Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 1 | :tocdepth: 2 |
| 2 | |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 3 | .. highlightlang:: none |
| 4 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 5 | .. _windows-faq: |
| 6 | |
| 7 | ===================== |
| 8 | Python on Windows FAQ |
| 9 | ===================== |
| 10 | |
Georg Brandl | 44ea77b | 2013-03-28 13:28:44 +0100 | [diff] [blame] | 11 | .. only:: html |
| 12 | |
| 13 | .. contents:: |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 14 | |
Georg Brandl | 62423cb | 2009-12-19 17:59:59 +0000 | [diff] [blame] | 15 | .. XXX need review for Python 3. |
| 16 | XXX need review for Windows Vista/Seven? |
| 17 | |
| 18 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 19 | How do I run a Python program under Windows? |
| 20 | -------------------------------------------- |
| 21 | |
| 22 | This is not necessarily a straightforward question. If you are already familiar |
| 23 | with running programs from the Windows command line then everything will seem |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 24 | obvious; otherwise, you might need a little more guidance. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 25 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 26 | Unless 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" |
| 28 | or "Command prompt window". Usually you can create such a window from your |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 29 | search bar by searching for ``cmd``. You should be able to recognize |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 30 | when you have started such a window because you will see a Windows "command |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 31 | prompt", which usually looks like this: |
| 32 | |
| 33 | .. code-block:: doscon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 34 | |
| 35 | C:\> |
| 36 | |
| 37 | The letter may be different, and there might be other things after it, so you |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 38 | might just as easily see something like: |
| 39 | |
| 40 | .. code-block:: doscon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 41 | |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 42 | D:\YourName\Projects\Python> |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 43 | |
| 44 | depending on how your computer has been set up and what else you have recently |
| 45 | done with it. Once you have started such a window, you are well on the way to |
| 46 | running Python programs. |
| 47 | |
| 48 | You need to realize that your Python scripts have to be processed by another |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 49 | program called the Python *interpreter*. The interpreter reads your script, |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 50 | compiles it into bytecodes, and then executes the bytecodes to run your |
| 51 | program. So, how do you arrange for the interpreter to handle your Python? |
| 52 | |
| 53 | First, you need to make sure that your command window recognises the word |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 54 | "py" as an instruction to start the interpreter. If you have opened a |
| 55 | command window, you should try entering the command ``py`` and hitting |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 56 | return: |
| 57 | |
| 58 | .. code-block:: doscon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 59 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 60 | C:\Users\YourName> py |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 61 | |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 62 | You should then see something like: |
| 63 | |
| 64 | .. code-block:: pycon |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 65 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 66 | Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32 |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 67 | Type "help", "copyright", "credits" or "license" for more information. |
| 68 | >>> |
| 69 | |
| 70 | You have started the interpreter in "interactive mode". That means you can enter |
| 71 | Python statements or expressions interactively and have them executed or |
| 72 | evaluated while you wait. This is one of Python's strongest features. Check it |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 73 | by entering a few expressions of your choice and seeing the results: |
| 74 | |
| 75 | .. code-block:: pycon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 76 | |
Georg Brandl | 62423cb | 2009-12-19 17:59:59 +0000 | [diff] [blame] | 77 | >>> print("Hello") |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 78 | Hello |
| 79 | >>> "Hello" * 3 |
Georg Brandl | 9205e9e | 2014-10-06 17:51:09 +0200 | [diff] [blame] | 80 | 'HelloHelloHello' |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 81 | |
| 82 | Many people use the interactive mode as a convenient yet highly programmable |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 83 | calculator. When you want to end your interactive Python session, |
| 84 | call the :func:`exit` function or hold the :kbd:`Ctrl` key down |
| 85 | while you enter a :kbd:`Z`, then hit the ":kbd:`Enter`" key to get |
| 86 | back to your Windows command prompt. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 87 | |
| 88 | You may also find that you have a Start-menu entry such as :menuselection:`Start |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 89 | --> Programs --> Python 3.x --> Python (command line)` that results in you |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 90 | seeing the ``>>>`` prompt in a new window. If so, the window will disappear |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 91 | after you call the :func:`exit` function or enter the :kbd:`Ctrl-Z` |
| 92 | character; Windows is running a single "python" |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 93 | command in the window, and closes it when you terminate the interpreter. |
| 94 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 95 | Now that we know the ``py`` command is recognized, you can give your |
| 96 | Python script to it. You'll have to give either an absolute or a |
| 97 | relative path to the Python script. Let's say your Python script is |
| 98 | located in your desktop and is named ``hello.py``, and your command |
| 99 | prompt is nicely opened in your home directory so you're seeing something |
| 100 | similar to:: |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 101 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 102 | C:\Users\YourName> |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 103 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 104 | So now you'll ask the ``py`` command to give your script to Python by |
| 105 | typing ``py`` followed by your script path:: |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 106 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 107 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 108 | C:\Users\YourName> py Desktop\hello.py |
| 109 | hello |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 110 | |
Ezio Melotti | 0639d5a | 2009-12-19 23:26:38 +0000 | [diff] [blame] | 111 | How do I make Python scripts executable? |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 112 | ---------------------------------------- |
| 113 | |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 114 | On Windows, the standard Python installer already associates the .py |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 115 | extension with a file type (Python.File) and gives that file type an open |
| 116 | command 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' |
| 119 | with no extension you need to add .py to the PATHEXT environment variable. |
| 120 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 121 | Why does Python sometimes take so long to start? |
| 122 | ------------------------------------------------ |
| 123 | |
| 124 | Usually Python starts very quickly on Windows, but occasionally there are bug |
| 125 | reports that Python suddenly begins to take a long time to start up. This is |
| 126 | made even more puzzling because Python will work fine on other Windows systems |
| 127 | which appear to be configured identically. |
| 128 | |
| 129 | The problem may be caused by a misconfiguration of virus checking software on |
| 130 | the problem machine. Some virus scanners have been known to introduce startup |
| 131 | overhead of two orders of magnitude when the scanner is configured to monitor |
| 132 | all reads from the filesystem. Try checking the configuration of virus scanning |
| 133 | software on your systems to ensure that they are indeed configured identically. |
| 134 | McAfee, when configured to scan all file system read activity, is a particular |
| 135 | offender. |
| 136 | |
| 137 | |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 138 | How do I make an executable from a Python script? |
| 139 | ------------------------------------------------- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 140 | |
Sanyam Khurana | 1b4587a | 2017-12-06 22:09:33 +0530 | [diff] [blame] | 141 | See `cx_Freeze <https://anthony-tuininga.github.io/cx_Freeze/>`_ for a distutils extension |
| 142 | that allows you to create console and GUI executables from Python code. |
Zachary Ware | 9fc0e99 | 2014-01-17 08:59:44 -0600 | [diff] [blame] | 143 | `py2exe <http://www.py2exe.org/>`_, the most popular extension for building |
| 144 | Python 2.x-based executables, does not yet support Python 3 but a version that |
| 145 | does is in development. |
| 146 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 147 | |
| 148 | Is a ``*.pyd`` file the same as a DLL? |
| 149 | -------------------------------------- |
| 150 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 151 | Yes, .pyd files are dll's, but there are a few differences. If you have a DLL |
Zachary Ware | 9fc0e99 | 2014-01-17 08:59:44 -0600 | [diff] [blame] | 152 | named ``foo.pyd``, then it must have a function ``PyInit_foo()``. You can then |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 153 | write Python "import foo", and Python will search for foo.pyd (as well as |
Zachary Ware | 9fc0e99 | 2014-01-17 08:59:44 -0600 | [diff] [blame] | 154 | foo.py, foo.pyc) and if it finds it, will attempt to call ``PyInit_foo()`` to |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 155 | initialize it. You do not link your .exe with foo.lib, as that would cause |
| 156 | Windows to require the DLL to be present. |
| 157 | |
| 158 | Note that the search path for foo.pyd is PYTHONPATH, not the same as the path |
| 159 | that Windows uses to search for foo.dll. Also, foo.pyd need not be present to |
| 160 | run your program, whereas if you linked your program with a dll, the dll is |
| 161 | required. Of course, foo.pyd is required if you want to say ``import foo``. In |
| 162 | a DLL, linkage is declared in the source code with ``__declspec(dllexport)``. |
| 163 | In a .pyd, linkage is defined in a list of available functions. |
| 164 | |
| 165 | |
| 166 | How can I embed Python into a Windows application? |
| 167 | -------------------------------------------------- |
| 168 | |
| 169 | Embedding the Python interpreter in a Windows app can be summarized as follows: |
| 170 | |
| 171 | 1. 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 Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 173 | 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 Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 175 | number such as "33" for Python 3.3. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 176 | |
Georg Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 177 | 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 Brandl | fc9794a | 2010-10-17 10:15:50 +0000 | [diff] [blame] | 180 | so-called "import lib" corresponding to :file:`python{NN}.dll`. It merely |
Georg Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 181 | defines symbols for the linker.) |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 182 | |
Georg Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 183 | 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 Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 185 | ``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 Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 193 | .. XXX what about static linking? |
| 194 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 195 | 2. 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 | |
| 201 | 3. 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 | |
| 211 | 4. 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 Storchaka | f47036c | 2013-12-24 11:04:36 +0200 | [diff] [blame] | 220 | PyRun_SimpleString("import myApp"); // Import the shadow class. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 221 | |
| 222 | 5. 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 | |
| 251 | 6. 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 Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 259 | How do I keep editors from inserting tabs into my Python source? |
| 260 | ---------------------------------------------------------------- |
| 261 | |
| 262 | The FAQ does not recommend using tabs, and the Python style guide, :pep:`8`, |
| 263 | recommends 4 spaces for distributed Python code; this is also the Emacs |
| 264 | python-mode default. |
| 265 | |
| 266 | Under any editor, mixing tabs and spaces is a bad idea. MSVC is no different in |
| 267 | this respect, and is easily configured to use spaces: Take :menuselection:`Tools |
| 268 | --> Options --> Tabs`, and for file type "Default" set "Tab size" and "Indent |
| 269 | size" to 4, and select the "Insert spaces" radio button. |
| 270 | |
Victor Stinner | 2b50186 | 2017-02-13 15:30:05 +0100 | [diff] [blame] | 271 | Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs |
Jim DeLaHunt | 3d707be | 2017-02-13 05:57:13 -0800 | [diff] [blame] | 272 | and spaces are causing problems in leading whitespace. |
Victor Stinner | 2b50186 | 2017-02-13 15:30:05 +0100 | [diff] [blame] | 273 | You may also run the :mod:`tabnanny` module to check a directory tree |
Jim DeLaHunt | 3d707be | 2017-02-13 05:57:13 -0800 | [diff] [blame] | 274 | in batch mode. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 275 | |
| 276 | |
| 277 | How do I check for a keypress without blocking? |
| 278 | ----------------------------------------------- |
| 279 | |
| 280 | Use the msvcrt module. This is a standard Windows-specific extension module. |
| 281 | It defines a function ``kbhit()`` which checks whether a keyboard hit is |
| 282 | present, and ``getch()`` which gets one character without echoing it. |
| 283 | |