blob: 75ebe603cb5bc6cb41ce933049dd80768cf0a3b2 [file] [log] [blame]
Georg Brandld7413152009-10-11 21:25:26 +00001:tocdepth: 2
2
Serhiy Storchaka46936d52018-04-08 19:18:04 +03003.. highlightlang:: none
4
Georg Brandld7413152009-10-11 21:25:26 +00005.. _windows-faq:
6
7=====================
8Python on Windows FAQ
9=====================
10
Georg Brandl44ea77b2013-03-28 13:28:44 +010011.. only:: html
12
13 .. contents::
Georg Brandld7413152009-10-11 21:25:26 +000014
Georg Brandl62423cb2009-12-19 17:59:59 +000015.. XXX need review for Python 3.
16 XXX need review for Windows Vista/Seven?
17
18
Georg Brandld7413152009-10-11 21:25:26 +000019How do I run a Python program under Windows?
20--------------------------------------------
21
22This is not necessarily a straightforward question. If you are already familiar
23with running programs from the Windows command line then everything will seem
Brian Curtin655b0c42012-12-16 23:58:09 -060024obvious; otherwise, you might need a little more guidance.
Georg Brandld7413152009-10-11 21:25:26 +000025
Georg Brandld7413152009-10-11 21:25:26 +000026Unless you use some sort of integrated development environment, you will end up
27*typing* Windows commands into what is variously referred to as a "DOS window"
28or "Command prompt window". Usually you can create such a window from your
Julien Palard64313472018-11-14 16:22:27 +010029search bar by searching for ``cmd``. You should be able to recognize
Georg Brandld7413152009-10-11 21:25:26 +000030when you have started such a window because you will see a Windows "command
Serhiy Storchaka46936d52018-04-08 19:18:04 +030031prompt", which usually looks like this:
32
33.. code-block:: doscon
Georg Brandld7413152009-10-11 21:25:26 +000034
35 C:\>
36
37The letter may be different, and there might be other things after it, so you
Serhiy Storchaka46936d52018-04-08 19:18:04 +030038might just as easily see something like:
39
40.. code-block:: doscon
Georg Brandld7413152009-10-11 21:25:26 +000041
Brian Curtin655b0c42012-12-16 23:58:09 -060042 D:\YourName\Projects\Python>
Georg Brandld7413152009-10-11 21:25:26 +000043
44depending on how your computer has been set up and what else you have recently
45done with it. Once you have started such a window, you are well on the way to
46running Python programs.
47
48You need to realize that your Python scripts have to be processed by another
Brian Curtin655b0c42012-12-16 23:58:09 -060049program called the Python *interpreter*. The interpreter reads your script,
Georg Brandld7413152009-10-11 21:25:26 +000050compiles it into bytecodes, and then executes the bytecodes to run your
51program. So, how do you arrange for the interpreter to handle your Python?
52
53First, you need to make sure that your command window recognises the word
Julien Palard64313472018-11-14 16:22:27 +010054"py" as an instruction to start the interpreter. If you have opened a
55command window, you should try entering the command ``py`` and hitting
Serhiy Storchaka46936d52018-04-08 19:18:04 +030056return:
57
58.. code-block:: doscon
Georg Brandld7413152009-10-11 21:25:26 +000059
Julien Palard64313472018-11-14 16:22:27 +010060 C:\Users\YourName> py
Brian Curtin655b0c42012-12-16 23:58:09 -060061
Serhiy Storchaka46936d52018-04-08 19:18:04 +030062You should then see something like:
63
64.. code-block:: pycon
Brian Curtin655b0c42012-12-16 23:58:09 -060065
Julien Palard64313472018-11-14 16:22:27 +010066 Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32
Georg Brandld7413152009-10-11 21:25:26 +000067 Type "help", "copyright", "credits" or "license" for more information.
68 >>>
69
70You have started the interpreter in "interactive mode". That means you can enter
71Python statements or expressions interactively and have them executed or
72evaluated while you wait. This is one of Python's strongest features. Check it
Serhiy Storchaka46936d52018-04-08 19:18:04 +030073by entering a few expressions of your choice and seeing the results:
74
75.. code-block:: pycon
Georg Brandld7413152009-10-11 21:25:26 +000076
Georg Brandl62423cb2009-12-19 17:59:59 +000077 >>> print("Hello")
Georg Brandld7413152009-10-11 21:25:26 +000078 Hello
79 >>> "Hello" * 3
Georg Brandl9205e9e2014-10-06 17:51:09 +020080 'HelloHelloHello'
Georg Brandld7413152009-10-11 21:25:26 +000081
82Many people use the interactive mode as a convenient yet highly programmable
Julien Palard64313472018-11-14 16:22:27 +010083calculator. When you want to end your interactive Python session,
84call the :func:`exit` function or hold the :kbd:`Ctrl` key down
85while you enter a :kbd:`Z`, then hit the ":kbd:`Enter`" key to get
86back to your Windows command prompt.
Georg Brandld7413152009-10-11 21:25:26 +000087
88You may also find that you have a Start-menu entry such as :menuselection:`Start
Julien Palard64313472018-11-14 16:22:27 +010089--> Programs --> Python 3.x --> Python (command line)` that results in you
Georg Brandld7413152009-10-11 21:25:26 +000090seeing the ``>>>`` prompt in a new window. If so, the window will disappear
Julien Palard64313472018-11-14 16:22:27 +010091after you call the :func:`exit` function or enter the :kbd:`Ctrl-Z`
92character; Windows is running a single "python"
Georg Brandld7413152009-10-11 21:25:26 +000093command in the window, and closes it when you terminate the interpreter.
94
Julien Palard64313472018-11-14 16:22:27 +010095Now that we know the ``py`` command is recognized, you can give your
96Python script to it. You'll have to give either an absolute or a
97relative path to the Python script. Let's say your Python script is
98located in your desktop and is named ``hello.py``, and your command
99prompt is nicely opened in your home directory so you're seeing something
100similar to::
Georg Brandld7413152009-10-11 21:25:26 +0000101
Julien Palard64313472018-11-14 16:22:27 +0100102 C:\Users\YourName>
Georg Brandld7413152009-10-11 21:25:26 +0000103
Julien Palard64313472018-11-14 16:22:27 +0100104So now you'll ask the ``py`` command to give your script to Python by
105typing ``py`` followed by your script path::
Georg Brandld7413152009-10-11 21:25:26 +0000106
Georg Brandld7413152009-10-11 21:25:26 +0000107
Julien Palard64313472018-11-14 16:22:27 +0100108 C:\Users\YourName> py Desktop\hello.py
109 hello
Georg Brandld7413152009-10-11 21:25:26 +0000110
Ezio Melotti0639d5a2009-12-19 23:26:38 +0000111How do I make Python scripts executable?
Georg Brandld7413152009-10-11 21:25:26 +0000112----------------------------------------
113
Brian Curtin655b0c42012-12-16 23:58:09 -0600114On Windows, the standard Python installer already associates the .py
Georg Brandld7413152009-10-11 21:25:26 +0000115extension with a file type (Python.File) and gives that file type an open
116command that runs the interpreter (``D:\Program Files\Python\python.exe "%1"
117%*``). This is enough to make scripts executable from the command prompt as
118'foo.py'. If you'd rather be able to execute the script by simple typing 'foo'
119with no extension you need to add .py to the PATHEXT environment variable.
120
Georg Brandld7413152009-10-11 21:25:26 +0000121Why does Python sometimes take so long to start?
122------------------------------------------------
123
124Usually Python starts very quickly on Windows, but occasionally there are bug
125reports that Python suddenly begins to take a long time to start up. This is
126made even more puzzling because Python will work fine on other Windows systems
127which appear to be configured identically.
128
129The problem may be caused by a misconfiguration of virus checking software on
130the problem machine. Some virus scanners have been known to introduce startup
131overhead of two orders of magnitude when the scanner is configured to monitor
132all reads from the filesystem. Try checking the configuration of virus scanning
133software on your systems to ensure that they are indeed configured identically.
134McAfee, when configured to scan all file system read activity, is a particular
135offender.
136
137
Brian Curtin655b0c42012-12-16 23:58:09 -0600138How do I make an executable from a Python script?
139-------------------------------------------------
Georg Brandld7413152009-10-11 21:25:26 +0000140
Sanyam Khurana1b4587a2017-12-06 22:09:33 +0530141See `cx_Freeze <https://anthony-tuininga.github.io/cx_Freeze/>`_ for a distutils extension
142that allows you to create console and GUI executables from Python code.
Zachary Ware9fc0e992014-01-17 08:59:44 -0600143`py2exe <http://www.py2exe.org/>`_, the most popular extension for building
144Python 2.x-based executables, does not yet support Python 3 but a version that
145does is in development.
146
Georg Brandld7413152009-10-11 21:25:26 +0000147
148Is a ``*.pyd`` file the same as a DLL?
149--------------------------------------
150
Georg Brandld7413152009-10-11 21:25:26 +0000151Yes, .pyd files are dll's, but there are a few differences. If you have a DLL
Zachary Ware9fc0e992014-01-17 08:59:44 -0600152named ``foo.pyd``, then it must have a function ``PyInit_foo()``. You can then
Georg Brandld7413152009-10-11 21:25:26 +0000153write Python "import foo", and Python will search for foo.pyd (as well as
Zachary Ware9fc0e992014-01-17 08:59:44 -0600154foo.py, foo.pyc) and if it finds it, will attempt to call ``PyInit_foo()`` to
Georg Brandld7413152009-10-11 21:25:26 +0000155initialize it. You do not link your .exe with foo.lib, as that would cause
156Windows to require the DLL to be present.
157
158Note that the search path for foo.pyd is PYTHONPATH, not the same as the path
159that Windows uses to search for foo.dll. Also, foo.pyd need not be present to
160run your program, whereas if you linked your program with a dll, the dll is
161required. Of course, foo.pyd is required if you want to say ``import foo``. In
162a DLL, linkage is declared in the source code with ``__declspec(dllexport)``.
163In a .pyd, linkage is defined in a list of available functions.
164
165
166How can I embed Python into a Windows application?
167--------------------------------------------------
168
169Embedding the Python interpreter in a Windows app can be summarized as follows:
170
1711. Do _not_ build Python into your .exe file directly. On Windows, Python must
172 be a DLL to handle importing modules that are themselves DLL's. (This is the
Georg Brandl4985ff22010-10-17 10:14:38 +0000173 first key undocumented fact.) Instead, link to :file:`python{NN}.dll`; it is
174 typically installed in ``C:\Windows\System``. *NN* is the Python version, a
Brian Curtin655b0c42012-12-16 23:58:09 -0600175 number such as "33" for Python 3.3.
Georg Brandld7413152009-10-11 21:25:26 +0000176
Georg Brandl4985ff22010-10-17 10:14:38 +0000177 You can link to Python in two different ways. Load-time linking means
178 linking against :file:`python{NN}.lib`, while run-time linking means linking
179 against :file:`python{NN}.dll`. (General note: :file:`python{NN}.lib` is the
Georg Brandlfc9794a2010-10-17 10:15:50 +0000180 so-called "import lib" corresponding to :file:`python{NN}.dll`. It merely
Georg Brandl4985ff22010-10-17 10:14:38 +0000181 defines symbols for the linker.)
Georg Brandld7413152009-10-11 21:25:26 +0000182
Georg Brandl4985ff22010-10-17 10:14:38 +0000183 Run-time linking greatly simplifies link options; everything happens at run
184 time. Your code must load :file:`python{NN}.dll` using the Windows
Georg Brandld7413152009-10-11 21:25:26 +0000185 ``LoadLibraryEx()`` routine. The code must also use access routines and data
186 in :file:`python{NN}.dll` (that is, Python's C API's) using pointers obtained
187 by the Windows ``GetProcAddress()`` routine. Macros can make using these
188 pointers transparent to any C code that calls routines in Python's C API.
189
190 Borland note: convert :file:`python{NN}.lib` to OMF format using Coff2Omf.exe
191 first.
192
Georg Brandl4985ff22010-10-17 10:14:38 +0000193 .. XXX what about static linking?
194
Georg Brandld7413152009-10-11 21:25:26 +00001952. If you use SWIG, it is easy to create a Python "extension module" that will
196 make the app's data and methods available to Python. SWIG will handle just
197 about all the grungy details for you. The result is C code that you link
198 *into* your .exe file (!) You do _not_ have to create a DLL file, and this
199 also simplifies linking.
200
2013. SWIG will create an init function (a C function) whose name depends on the
202 name of the extension module. For example, if the name of the module is leo,
203 the init function will be called initleo(). If you use SWIG shadow classes,
204 as you should, the init function will be called initleoc(). This initializes
205 a mostly hidden helper class used by the shadow class.
206
207 The reason you can link the C code in step 2 into your .exe file is that
208 calling the initialization function is equivalent to importing the module
209 into Python! (This is the second key undocumented fact.)
210
2114. In short, you can use the following code to initialize the Python interpreter
212 with your extension module.
213
214 .. code-block:: c
215
216 #include "python.h"
217 ...
218 Py_Initialize(); // Initialize Python.
219 initmyAppc(); // Initialize (import) the helper class.
Serhiy Storchakaf47036c2013-12-24 11:04:36 +0200220 PyRun_SimpleString("import myApp"); // Import the shadow class.
Georg Brandld7413152009-10-11 21:25:26 +0000221
2225. There are two problems with Python's C API which will become apparent if you
223 use a compiler other than MSVC, the compiler used to build pythonNN.dll.
224
225 Problem 1: The so-called "Very High Level" functions that take FILE *
226 arguments will not work in a multi-compiler environment because each
227 compiler's notion of a struct FILE will be different. From an implementation
228 standpoint these are very _low_ level functions.
229
230 Problem 2: SWIG generates the following code when generating wrappers to void
231 functions:
232
233 .. code-block:: c
234
235 Py_INCREF(Py_None);
236 _resultobj = Py_None;
237 return _resultobj;
238
239 Alas, Py_None is a macro that expands to a reference to a complex data
240 structure called _Py_NoneStruct inside pythonNN.dll. Again, this code will
241 fail in a mult-compiler environment. Replace such code by:
242
243 .. code-block:: c
244
245 return Py_BuildValue("");
246
247 It may be possible to use SWIG's ``%typemap`` command to make the change
248 automatically, though I have not been able to get this to work (I'm a
249 complete SWIG newbie).
250
2516. Using a Python shell script to put up a Python interpreter window from inside
252 your Windows app is not a good idea; the resulting window will be independent
253 of your app's windowing system. Rather, you (or the wxPythonWindow class)
254 should create a "native" interpreter window. It is easy to connect that
255 window to the Python interpreter. You can redirect Python's i/o to _any_
256 object that supports read and write, so all you need is a Python object
257 (defined in your extension module) that contains read() and write() methods.
258
Georg Brandld7413152009-10-11 21:25:26 +0000259How do I keep editors from inserting tabs into my Python source?
260----------------------------------------------------------------
261
262The FAQ does not recommend using tabs, and the Python style guide, :pep:`8`,
263recommends 4 spaces for distributed Python code; this is also the Emacs
264python-mode default.
265
266Under any editor, mixing tabs and spaces is a bad idea. MSVC is no different in
267this respect, and is easily configured to use spaces: Take :menuselection:`Tools
268--> Options --> Tabs`, and for file type "Default" set "Tab size" and "Indent
269size" to 4, and select the "Insert spaces" radio button.
270
Victor Stinner2b501862017-02-13 15:30:05 +0100271Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs
Jim DeLaHunt3d707be2017-02-13 05:57:13 -0800272and spaces are causing problems in leading whitespace.
Victor Stinner2b501862017-02-13 15:30:05 +0100273You may also run the :mod:`tabnanny` module to check a directory tree
Jim DeLaHunt3d707be2017-02-13 05:57:13 -0800274in batch mode.
Georg Brandld7413152009-10-11 21:25:26 +0000275
276
277How do I check for a keypress without blocking?
278-----------------------------------------------
279
280Use the msvcrt module. This is a standard Windows-specific extension module.
281It defines a function ``kbhit()`` which checks whether a keyboard hit is
282present, and ``getch()`` which gets one character without echoing it.
283