blob: 651ba2268306a02d46d1dc1aa1d6c7c85554c8a0 [file] [log] [blame]
Georg Brandld7413152009-10-11 21:25:26 +00001:tocdepth: 2
2
3.. _windows-faq:
4
5=====================
6Python on Windows FAQ
7=====================
8
Georg Brandl44ea77b2013-03-28 13:28:44 +01009.. only:: html
10
11 .. contents::
Georg Brandld7413152009-10-11 21:25:26 +000012
Georg Brandl62423cb2009-12-19 17:59:59 +000013.. XXX need review for Python 3.
14 XXX need review for Windows Vista/Seven?
15
16
Georg Brandld7413152009-10-11 21:25:26 +000017How do I run a Python program under Windows?
18--------------------------------------------
19
20This is not necessarily a straightforward question. If you are already familiar
21with running programs from the Windows command line then everything will seem
Brian Curtin655b0c42012-12-16 23:58:09 -060022obvious; otherwise, you might need a little more guidance.
Georg Brandld7413152009-10-11 21:25:26 +000023
24.. sidebar:: |Python Development on XP|_
25 :subtitle: `Python Development on XP`_
26
27 This series of screencasts aims to get you up and running with Python on
28 Windows XP. The knowledge is distilled into 1.5 hours and will get you up
29 and running with the right Python distribution, coding in your choice of IDE,
30 and debugging and writing solid code with unit-tests.
31
32.. |Python Development on XP| image:: python-video-icon.png
33.. _`Python Development on XP`:
34 http://www.showmedo.com/videos/series?name=pythonOzsvaldPyNewbieSeries
35
36Unless you use some sort of integrated development environment, you will end up
37*typing* Windows commands into what is variously referred to as a "DOS window"
38or "Command prompt window". Usually you can create such a window from your
Brian Curtin655b0c42012-12-16 23:58:09 -060039Start menu; under Windows 7 the menu selection is :menuselection:`Start -->
Georg Brandld7413152009-10-11 21:25:26 +000040Programs --> Accessories --> Command Prompt`. You should be able to recognize
41when you have started such a window because you will see a Windows "command
42prompt", which usually looks like this::
43
44 C:\>
45
46The letter may be different, and there might be other things after it, so you
47might just as easily see something like::
48
Brian Curtin655b0c42012-12-16 23:58:09 -060049 D:\YourName\Projects\Python>
Georg Brandld7413152009-10-11 21:25:26 +000050
51depending on how your computer has been set up and what else you have recently
52done with it. Once you have started such a window, you are well on the way to
53running Python programs.
54
55You need to realize that your Python scripts have to be processed by another
Brian Curtin655b0c42012-12-16 23:58:09 -060056program called the Python *interpreter*. The interpreter reads your script,
Georg Brandld7413152009-10-11 21:25:26 +000057compiles it into bytecodes, and then executes the bytecodes to run your
58program. So, how do you arrange for the interpreter to handle your Python?
59
60First, you need to make sure that your command window recognises the word
61"python" as an instruction to start the interpreter. If you have opened a
62command window, you should try entering the command ``python`` and hitting
Brian Curtin655b0c42012-12-16 23:58:09 -060063return.::
Georg Brandld7413152009-10-11 21:25:26 +000064
Brian Curtin655b0c42012-12-16 23:58:09 -060065 C:\Users\YourName> python
66
67You should then see something like::
68
69 Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32
Georg Brandld7413152009-10-11 21:25:26 +000070 Type "help", "copyright", "credits" or "license" for more information.
71 >>>
72
73You have started the interpreter in "interactive mode". That means you can enter
74Python statements or expressions interactively and have them executed or
75evaluated while you wait. This is one of Python's strongest features. Check it
76by entering a few expressions of your choice and seeing the results::
77
Georg Brandl62423cb2009-12-19 17:59:59 +000078 >>> print("Hello")
Georg Brandld7413152009-10-11 21:25:26 +000079 Hello
80 >>> "Hello" * 3
81 HelloHelloHello
82
83Many people use the interactive mode as a convenient yet highly programmable
84calculator. When you want to end your interactive Python session, hold the Ctrl
85key down while you enter a Z, then hit the "Enter" key to get back to your
86Windows command prompt.
87
88You may also find that you have a Start-menu entry such as :menuselection:`Start
Brian Curtin655b0c42012-12-16 23:58:09 -060089--> Programs --> Python 3.3 --> 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
91after you enter the Ctrl-Z character; Windows is running a single "python"
92command in the window, and closes it when you terminate the interpreter.
93
94If the ``python`` command, instead of displaying the interpreter prompt ``>>>``,
95gives you a message like::
96
Brian Curtin655b0c42012-12-16 23:58:09 -060097 'python' is not recognized as an internal or external command, operable program or batch file.
Georg Brandld7413152009-10-11 21:25:26 +000098
99.. sidebar:: |Adding Python to DOS Path|_
100 :subtitle: `Adding Python to DOS Path`_
101
102 Python is not added to the DOS path by default. This screencast will walk
103 you through the steps to add the correct entry to the `System Path`, allowing
104 Python to be executed from the command-line by all users.
105
106.. |Adding Python to DOS Path| image:: python-video-icon.png
107.. _`Adding Python to DOS Path`:
108 http://showmedo.com/videos/video?name=960000&fromSeriesID=96
109
110
111or::
112
113 Bad command or filename
114
115then you need to make sure that your computer knows where to find the Python
116interpreter. To do this you will have to modify a setting called PATH, which is
117a list of directories where Windows will look for programs.
118
119You should arrange for Python's installation directory to be added to the PATH
120of every command window as it starts. If you installed Python fairly recently
121then the command ::
122
123 dir C:\py*
124
125will probably tell you where it is installed; the usual location is something
Brian Curtin655b0c42012-12-16 23:58:09 -0600126like ``C:\Python33``. Otherwise you will be reduced to a search of your whole
Georg Brandld7413152009-10-11 21:25:26 +0000127disk ... use :menuselection:`Tools --> Find` or hit the :guilabel:`Search`
128button and look for "python.exe". Supposing you discover that Python is
Brian Curtin655b0c42012-12-16 23:58:09 -0600129installed in the ``C:\Python33`` directory (the default at the time of writing),
Georg Brandld7413152009-10-11 21:25:26 +0000130you should make sure that entering the command ::
131
Brian Curtin655b0c42012-12-16 23:58:09 -0600132 c:\Python33\python
Georg Brandld7413152009-10-11 21:25:26 +0000133
134starts up the interpreter as above (and don't forget you'll need a "CTRL-Z" and
Brian Curtin655b0c42012-12-16 23:58:09 -0600135an "Enter" to get out of it). Once you have verified the directory, you can
136add it to the system path to make it easier to start Python by just running
137the ``python`` command. This is currently an option in the installer as of
138CPython 3.3.
Georg Brandld7413152009-10-11 21:25:26 +0000139
Brian Curtin655b0c42012-12-16 23:58:09 -0600140More information about environment variables can be found on the
141:ref:`Using Python on Windows <setting-envvars>` page.
Georg Brandld7413152009-10-11 21:25:26 +0000142
Ezio Melotti0639d5a2009-12-19 23:26:38 +0000143How do I make Python scripts executable?
Georg Brandld7413152009-10-11 21:25:26 +0000144----------------------------------------
145
Brian Curtin655b0c42012-12-16 23:58:09 -0600146On Windows, the standard Python installer already associates the .py
Georg Brandld7413152009-10-11 21:25:26 +0000147extension with a file type (Python.File) and gives that file type an open
148command that runs the interpreter (``D:\Program Files\Python\python.exe "%1"
149%*``). This is enough to make scripts executable from the command prompt as
150'foo.py'. If you'd rather be able to execute the script by simple typing 'foo'
151with no extension you need to add .py to the PATHEXT environment variable.
152
Georg Brandld7413152009-10-11 21:25:26 +0000153Why does Python sometimes take so long to start?
154------------------------------------------------
155
156Usually Python starts very quickly on Windows, but occasionally there are bug
157reports that Python suddenly begins to take a long time to start up. This is
158made even more puzzling because Python will work fine on other Windows systems
159which appear to be configured identically.
160
161The problem may be caused by a misconfiguration of virus checking software on
162the problem machine. Some virus scanners have been known to introduce startup
163overhead of two orders of magnitude when the scanner is configured to monitor
164all reads from the filesystem. Try checking the configuration of virus scanning
165software on your systems to ensure that they are indeed configured identically.
166McAfee, when configured to scan all file system read activity, is a particular
167offender.
168
169
Brian Curtin655b0c42012-12-16 23:58:09 -0600170How do I make an executable from a Python script?
171-------------------------------------------------
Georg Brandld7413152009-10-11 21:25:26 +0000172
Brian Curtin655b0c42012-12-16 23:58:09 -0600173See http://www.py2exe.org/ for a distutils extension that allows you
174to create console and GUI executables from Python code.
Georg Brandld7413152009-10-11 21:25:26 +0000175
176Is a ``*.pyd`` file the same as a DLL?
177--------------------------------------
178
179.. XXX update for py3k (PyInit_foo)
180
181Yes, .pyd files are dll's, but there are a few differences. If you have a DLL
182named ``foo.pyd``, then it must have a function ``initfoo()``. You can then
183write Python "import foo", and Python will search for foo.pyd (as well as
184foo.py, foo.pyc) and if it finds it, will attempt to call ``initfoo()`` to
185initialize it. You do not link your .exe with foo.lib, as that would cause
186Windows to require the DLL to be present.
187
188Note that the search path for foo.pyd is PYTHONPATH, not the same as the path
189that Windows uses to search for foo.dll. Also, foo.pyd need not be present to
190run your program, whereas if you linked your program with a dll, the dll is
191required. Of course, foo.pyd is required if you want to say ``import foo``. In
192a DLL, linkage is declared in the source code with ``__declspec(dllexport)``.
193In a .pyd, linkage is defined in a list of available functions.
194
195
196How can I embed Python into a Windows application?
197--------------------------------------------------
198
199Embedding the Python interpreter in a Windows app can be summarized as follows:
200
2011. Do _not_ build Python into your .exe file directly. On Windows, Python must
202 be a DLL to handle importing modules that are themselves DLL's. (This is the
Georg Brandl4985ff22010-10-17 10:14:38 +0000203 first key undocumented fact.) Instead, link to :file:`python{NN}.dll`; it is
204 typically installed in ``C:\Windows\System``. *NN* is the Python version, a
Brian Curtin655b0c42012-12-16 23:58:09 -0600205 number such as "33" for Python 3.3.
Georg Brandld7413152009-10-11 21:25:26 +0000206
Georg Brandl4985ff22010-10-17 10:14:38 +0000207 You can link to Python in two different ways. Load-time linking means
208 linking against :file:`python{NN}.lib`, while run-time linking means linking
209 against :file:`python{NN}.dll`. (General note: :file:`python{NN}.lib` is the
Georg Brandlfc9794a2010-10-17 10:15:50 +0000210 so-called "import lib" corresponding to :file:`python{NN}.dll`. It merely
Georg Brandl4985ff22010-10-17 10:14:38 +0000211 defines symbols for the linker.)
Georg Brandld7413152009-10-11 21:25:26 +0000212
Georg Brandl4985ff22010-10-17 10:14:38 +0000213 Run-time linking greatly simplifies link options; everything happens at run
214 time. Your code must load :file:`python{NN}.dll` using the Windows
Georg Brandld7413152009-10-11 21:25:26 +0000215 ``LoadLibraryEx()`` routine. The code must also use access routines and data
216 in :file:`python{NN}.dll` (that is, Python's C API's) using pointers obtained
217 by the Windows ``GetProcAddress()`` routine. Macros can make using these
218 pointers transparent to any C code that calls routines in Python's C API.
219
220 Borland note: convert :file:`python{NN}.lib` to OMF format using Coff2Omf.exe
221 first.
222
Georg Brandl4985ff22010-10-17 10:14:38 +0000223 .. XXX what about static linking?
224
Georg Brandld7413152009-10-11 21:25:26 +00002252. If you use SWIG, it is easy to create a Python "extension module" that will
226 make the app's data and methods available to Python. SWIG will handle just
227 about all the grungy details for you. The result is C code that you link
228 *into* your .exe file (!) You do _not_ have to create a DLL file, and this
229 also simplifies linking.
230
2313. SWIG will create an init function (a C function) whose name depends on the
232 name of the extension module. For example, if the name of the module is leo,
233 the init function will be called initleo(). If you use SWIG shadow classes,
234 as you should, the init function will be called initleoc(). This initializes
235 a mostly hidden helper class used by the shadow class.
236
237 The reason you can link the C code in step 2 into your .exe file is that
238 calling the initialization function is equivalent to importing the module
239 into Python! (This is the second key undocumented fact.)
240
2414. In short, you can use the following code to initialize the Python interpreter
242 with your extension module.
243
244 .. code-block:: c
245
246 #include "python.h"
247 ...
248 Py_Initialize(); // Initialize Python.
249 initmyAppc(); // Initialize (import) the helper class.
250 PyRun_SimpleString("import myApp") ; // Import the shadow class.
251
2525. There are two problems with Python's C API which will become apparent if you
253 use a compiler other than MSVC, the compiler used to build pythonNN.dll.
254
255 Problem 1: The so-called "Very High Level" functions that take FILE *
256 arguments will not work in a multi-compiler environment because each
257 compiler's notion of a struct FILE will be different. From an implementation
258 standpoint these are very _low_ level functions.
259
260 Problem 2: SWIG generates the following code when generating wrappers to void
261 functions:
262
263 .. code-block:: c
264
265 Py_INCREF(Py_None);
266 _resultobj = Py_None;
267 return _resultobj;
268
269 Alas, Py_None is a macro that expands to a reference to a complex data
270 structure called _Py_NoneStruct inside pythonNN.dll. Again, this code will
271 fail in a mult-compiler environment. Replace such code by:
272
273 .. code-block:: c
274
275 return Py_BuildValue("");
276
277 It may be possible to use SWIG's ``%typemap`` command to make the change
278 automatically, though I have not been able to get this to work (I'm a
279 complete SWIG newbie).
280
2816. Using a Python shell script to put up a Python interpreter window from inside
282 your Windows app is not a good idea; the resulting window will be independent
283 of your app's windowing system. Rather, you (or the wxPythonWindow class)
284 should create a "native" interpreter window. It is easy to connect that
285 window to the Python interpreter. You can redirect Python's i/o to _any_
286 object that supports read and write, so all you need is a Python object
287 (defined in your extension module) that contains read() and write() methods.
288
Georg Brandld7413152009-10-11 21:25:26 +0000289How do I keep editors from inserting tabs into my Python source?
290----------------------------------------------------------------
291
292The FAQ does not recommend using tabs, and the Python style guide, :pep:`8`,
293recommends 4 spaces for distributed Python code; this is also the Emacs
294python-mode default.
295
296Under any editor, mixing tabs and spaces is a bad idea. MSVC is no different in
297this respect, and is easily configured to use spaces: Take :menuselection:`Tools
298--> Options --> Tabs`, and for file type "Default" set "Tab size" and "Indent
299size" to 4, and select the "Insert spaces" radio button.
300
301If you suspect mixed tabs and spaces are causing problems in leading whitespace,
302run Python with the :option:`-t` switch or run ``Tools/Scripts/tabnanny.py`` to
303check a directory tree in batch mode.
304
305
306How do I check for a keypress without blocking?
307-----------------------------------------------
308
309Use the msvcrt module. This is a standard Windows-specific extension module.
310It defines a function ``kbhit()`` which checks whether a keyboard hit is
311present, and ``getch()`` which gets one character without echoing it.
312
313
314How do I emulate os.kill() in Windows?
315--------------------------------------
316
Brian Curtinf4ed2062010-04-12 18:10:10 +0000317Prior to Python 2.7 and 3.2, to terminate a process, you can use :mod:`ctypes`::
Georg Brandlff24c8e2010-03-21 09:52:24 +0000318
319 import ctypes
Georg Brandld7413152009-10-11 21:25:26 +0000320
321 def kill(pid):
322 """kill function for Win32"""
Georg Brandlff24c8e2010-03-21 09:52:24 +0000323 kernel32 = ctypes.windll.kernel32
324 handle = kernel32.OpenProcess(1, 0, pid)
325 return (0 != kernel32.TerminateProcess(handle, 0))
Georg Brandld7413152009-10-11 21:25:26 +0000326
Brian Curtinf4ed2062010-04-12 18:10:10 +0000327In 2.7 and 3.2, :func:`os.kill` is implemented similar to the above function,
328with the additional feature of being able to send CTRL+C and CTRL+BREAK
329to console subprocesses which are designed to handle those signals. See
330:func:`os.kill` for further details.
331
Georg Brandld7413152009-10-11 21:25:26 +0000332How do I extract the downloaded documentation on Windows?
333---------------------------------------------------------
334
335Sometimes, when you download the documentation package to a Windows machine
336using a web browser, the file extension of the saved file ends up being .EXE.
337This is a mistake; the extension should be .TGZ.
338
339Simply rename the downloaded file to have the .TGZ extension, and WinZip will be
340able to handle it. (If your copy of WinZip doesn't, get a newer one from
341http://www.winzip.com.)
342