Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 1 | :tocdepth: 2 |
| 2 | |
Stéphane Wirtel | cbb6484 | 2019-05-17 11:55:34 +0200 | [diff] [blame] | 3 | .. highlight:: none |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 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 | |
Ned Deily | 6661c17 | 2019-03-24 15:03:54 -0400 | [diff] [blame] | 18 | .. _faq-run-program-under-windows: |
| 19 | |
Georg Brandl | 62423cb | 2009-12-19 17:59:59 +0000 | [diff] [blame] | 20 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 21 | How do I run a Python program under Windows? |
| 22 | -------------------------------------------- |
| 23 | |
| 24 | This is not necessarily a straightforward question. If you are already familiar |
| 25 | with running programs from the Windows command line then everything will seem |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 26 | obvious; otherwise, you might need a little more guidance. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 27 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 28 | Unless you use some sort of integrated development environment, you will end up |
| 29 | *typing* Windows commands into what is variously referred to as a "DOS window" |
| 30 | 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] | 31 | search bar by searching for ``cmd``. You should be able to recognize |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 32 | 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] | 33 | prompt", which usually looks like this: |
| 34 | |
| 35 | .. code-block:: doscon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 36 | |
| 37 | C:\> |
| 38 | |
| 39 | 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] | 40 | might just as easily see something like: |
| 41 | |
| 42 | .. code-block:: doscon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 43 | |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 44 | D:\YourName\Projects\Python> |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 45 | |
| 46 | depending on how your computer has been set up and what else you have recently |
| 47 | done with it. Once you have started such a window, you are well on the way to |
| 48 | running Python programs. |
| 49 | |
| 50 | 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] | 51 | program called the Python *interpreter*. The interpreter reads your script, |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 52 | compiles it into bytecodes, and then executes the bytecodes to run your |
| 53 | program. So, how do you arrange for the interpreter to handle your Python? |
| 54 | |
| 55 | 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] | 56 | "py" as an instruction to start the interpreter. If you have opened a |
| 57 | command window, you should try entering the command ``py`` and hitting |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 58 | return: |
| 59 | |
| 60 | .. code-block:: doscon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 61 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 62 | C:\Users\YourName> py |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 63 | |
Serhiy Storchaka | 46936d5 | 2018-04-08 19:18:04 +0300 | [diff] [blame] | 64 | You should then see something like: |
| 65 | |
| 66 | .. code-block:: pycon |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 67 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 68 | 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] | 69 | Type "help", "copyright", "credits" or "license" for more information. |
| 70 | >>> |
| 71 | |
| 72 | You have started the interpreter in "interactive mode". That means you can enter |
| 73 | Python statements or expressions interactively and have them executed or |
| 74 | 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] | 75 | by entering a few expressions of your choice and seeing the results: |
| 76 | |
| 77 | .. code-block:: pycon |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 78 | |
Georg Brandl | 62423cb | 2009-12-19 17:59:59 +0000 | [diff] [blame] | 79 | >>> print("Hello") |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 80 | Hello |
| 81 | >>> "Hello" * 3 |
Georg Brandl | 9205e9e | 2014-10-06 17:51:09 +0200 | [diff] [blame] | 82 | 'HelloHelloHello' |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 83 | |
| 84 | Many people use the interactive mode as a convenient yet highly programmable |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 85 | calculator. When you want to end your interactive Python session, |
| 86 | call the :func:`exit` function or hold the :kbd:`Ctrl` key down |
| 87 | while you enter a :kbd:`Z`, then hit the ":kbd:`Enter`" key to get |
| 88 | back to your Windows command prompt. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 89 | |
| 90 | 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] | 91 | --> Programs --> Python 3.x --> Python (command line)` that results in you |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 92 | 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] | 93 | after you call the :func:`exit` function or enter the :kbd:`Ctrl-Z` |
| 94 | character; Windows is running a single "python" |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 95 | command in the window, and closes it when you terminate the interpreter. |
| 96 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 97 | Now that we know the ``py`` command is recognized, you can give your |
| 98 | Python script to it. You'll have to give either an absolute or a |
| 99 | relative path to the Python script. Let's say your Python script is |
| 100 | located in your desktop and is named ``hello.py``, and your command |
| 101 | prompt is nicely opened in your home directory so you're seeing something |
| 102 | similar to:: |
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 | C:\Users\YourName> |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 105 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 106 | So now you'll ask the ``py`` command to give your script to Python by |
| 107 | typing ``py`` followed by your script path:: |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 108 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 109 | |
Julien Palard | 6431347 | 2018-11-14 16:22:27 +0100 | [diff] [blame] | 110 | C:\Users\YourName> py Desktop\hello.py |
| 111 | hello |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 112 | |
Ezio Melotti | 0639d5a | 2009-12-19 23:26:38 +0000 | [diff] [blame] | 113 | How do I make Python scripts executable? |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 114 | ---------------------------------------- |
| 115 | |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 116 | On Windows, the standard Python installer already associates the .py |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 117 | extension with a file type (Python.File) and gives that file type an open |
| 118 | command that runs the interpreter (``D:\Program Files\Python\python.exe "%1" |
| 119 | %*``). This is enough to make scripts executable from the command prompt as |
| 120 | 'foo.py'. If you'd rather be able to execute the script by simple typing 'foo' |
| 121 | with no extension you need to add .py to the PATHEXT environment variable. |
| 122 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 123 | Why does Python sometimes take so long to start? |
| 124 | ------------------------------------------------ |
| 125 | |
| 126 | Usually Python starts very quickly on Windows, but occasionally there are bug |
| 127 | reports that Python suddenly begins to take a long time to start up. This is |
| 128 | made even more puzzling because Python will work fine on other Windows systems |
| 129 | which appear to be configured identically. |
| 130 | |
| 131 | The problem may be caused by a misconfiguration of virus checking software on |
| 132 | the problem machine. Some virus scanners have been known to introduce startup |
| 133 | overhead of two orders of magnitude when the scanner is configured to monitor |
| 134 | all reads from the filesystem. Try checking the configuration of virus scanning |
| 135 | software on your systems to ensure that they are indeed configured identically. |
| 136 | McAfee, when configured to scan all file system read activity, is a particular |
| 137 | offender. |
| 138 | |
| 139 | |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 140 | How do I make an executable from a Python script? |
| 141 | ------------------------------------------------- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 142 | |
Michel Samia | 33242a9 | 2020-10-20 00:02:43 +0200 | [diff] [blame] | 143 | See `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/>`_ for a distutils extension |
Sanyam Khurana | 1b4587a | 2017-12-06 22:09:33 +0530 | [diff] [blame] | 144 | that allows you to create console and GUI executables from Python code. |
Zachary Ware | 9fc0e99 | 2014-01-17 08:59:44 -0600 | [diff] [blame] | 145 | `py2exe <http://www.py2exe.org/>`_, the most popular extension for building |
| 146 | Python 2.x-based executables, does not yet support Python 3 but a version that |
| 147 | does is in development. |
| 148 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 149 | |
| 150 | Is a ``*.pyd`` file the same as a DLL? |
| 151 | -------------------------------------- |
| 152 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 153 | 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] | 154 | 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] | 155 | 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] | 156 | 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] | 157 | initialize it. You do not link your .exe with foo.lib, as that would cause |
| 158 | Windows to require the DLL to be present. |
| 159 | |
| 160 | Note that the search path for foo.pyd is PYTHONPATH, not the same as the path |
| 161 | that Windows uses to search for foo.dll. Also, foo.pyd need not be present to |
| 162 | run your program, whereas if you linked your program with a dll, the dll is |
| 163 | required. Of course, foo.pyd is required if you want to say ``import foo``. In |
| 164 | a DLL, linkage is declared in the source code with ``__declspec(dllexport)``. |
| 165 | In a .pyd, linkage is defined in a list of available functions. |
| 166 | |
| 167 | |
| 168 | How can I embed Python into a Windows application? |
| 169 | -------------------------------------------------- |
| 170 | |
| 171 | Embedding the Python interpreter in a Windows app can be summarized as follows: |
| 172 | |
| 173 | 1. Do _not_ build Python into your .exe file directly. On Windows, Python must |
| 174 | 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] | 175 | first key undocumented fact.) Instead, link to :file:`python{NN}.dll`; it is |
| 176 | typically installed in ``C:\Windows\System``. *NN* is the Python version, a |
Brian Curtin | 655b0c4 | 2012-12-16 23:58:09 -0600 | [diff] [blame] | 177 | number such as "33" for Python 3.3. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 178 | |
Georg Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 179 | You can link to Python in two different ways. Load-time linking means |
| 180 | linking against :file:`python{NN}.lib`, while run-time linking means linking |
| 181 | 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] | 182 | so-called "import lib" corresponding to :file:`python{NN}.dll`. It merely |
Georg Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 183 | defines symbols for the linker.) |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 184 | |
Georg Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 185 | Run-time linking greatly simplifies link options; everything happens at run |
| 186 | time. Your code must load :file:`python{NN}.dll` using the Windows |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 187 | ``LoadLibraryEx()`` routine. The code must also use access routines and data |
| 188 | in :file:`python{NN}.dll` (that is, Python's C API's) using pointers obtained |
| 189 | by the Windows ``GetProcAddress()`` routine. Macros can make using these |
| 190 | pointers transparent to any C code that calls routines in Python's C API. |
| 191 | |
| 192 | Borland note: convert :file:`python{NN}.lib` to OMF format using Coff2Omf.exe |
| 193 | first. |
| 194 | |
Georg Brandl | 4985ff2 | 2010-10-17 10:14:38 +0000 | [diff] [blame] | 195 | .. XXX what about static linking? |
| 196 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 197 | 2. If you use SWIG, it is easy to create a Python "extension module" that will |
| 198 | make the app's data and methods available to Python. SWIG will handle just |
| 199 | about all the grungy details for you. The result is C code that you link |
| 200 | *into* your .exe file (!) You do _not_ have to create a DLL file, and this |
| 201 | also simplifies linking. |
| 202 | |
| 203 | 3. SWIG will create an init function (a C function) whose name depends on the |
| 204 | name of the extension module. For example, if the name of the module is leo, |
| 205 | the init function will be called initleo(). If you use SWIG shadow classes, |
| 206 | as you should, the init function will be called initleoc(). This initializes |
| 207 | a mostly hidden helper class used by the shadow class. |
| 208 | |
| 209 | The reason you can link the C code in step 2 into your .exe file is that |
| 210 | calling the initialization function is equivalent to importing the module |
| 211 | into Python! (This is the second key undocumented fact.) |
| 212 | |
| 213 | 4. In short, you can use the following code to initialize the Python interpreter |
| 214 | with your extension module. |
| 215 | |
| 216 | .. code-block:: c |
| 217 | |
| 218 | #include "python.h" |
| 219 | ... |
| 220 | Py_Initialize(); // Initialize Python. |
| 221 | initmyAppc(); // Initialize (import) the helper class. |
Serhiy Storchaka | f47036c | 2013-12-24 11:04:36 +0200 | [diff] [blame] | 222 | PyRun_SimpleString("import myApp"); // Import the shadow class. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 223 | |
| 224 | 5. There are two problems with Python's C API which will become apparent if you |
| 225 | use a compiler other than MSVC, the compiler used to build pythonNN.dll. |
| 226 | |
| 227 | Problem 1: The so-called "Very High Level" functions that take FILE * |
| 228 | arguments will not work in a multi-compiler environment because each |
| 229 | compiler's notion of a struct FILE will be different. From an implementation |
| 230 | standpoint these are very _low_ level functions. |
| 231 | |
| 232 | Problem 2: SWIG generates the following code when generating wrappers to void |
| 233 | functions: |
| 234 | |
| 235 | .. code-block:: c |
| 236 | |
| 237 | Py_INCREF(Py_None); |
| 238 | _resultobj = Py_None; |
| 239 | return _resultobj; |
| 240 | |
| 241 | Alas, Py_None is a macro that expands to a reference to a complex data |
| 242 | structure called _Py_NoneStruct inside pythonNN.dll. Again, this code will |
| 243 | fail in a mult-compiler environment. Replace such code by: |
| 244 | |
| 245 | .. code-block:: c |
| 246 | |
| 247 | return Py_BuildValue(""); |
| 248 | |
| 249 | It may be possible to use SWIG's ``%typemap`` command to make the change |
| 250 | automatically, though I have not been able to get this to work (I'm a |
| 251 | complete SWIG newbie). |
| 252 | |
| 253 | 6. Using a Python shell script to put up a Python interpreter window from inside |
| 254 | your Windows app is not a good idea; the resulting window will be independent |
| 255 | of your app's windowing system. Rather, you (or the wxPythonWindow class) |
| 256 | should create a "native" interpreter window. It is easy to connect that |
| 257 | window to the Python interpreter. You can redirect Python's i/o to _any_ |
| 258 | object that supports read and write, so all you need is a Python object |
| 259 | (defined in your extension module) that contains read() and write() methods. |
| 260 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 261 | How do I keep editors from inserting tabs into my Python source? |
| 262 | ---------------------------------------------------------------- |
| 263 | |
| 264 | The FAQ does not recommend using tabs, and the Python style guide, :pep:`8`, |
| 265 | recommends 4 spaces for distributed Python code; this is also the Emacs |
| 266 | python-mode default. |
| 267 | |
| 268 | Under any editor, mixing tabs and spaces is a bad idea. MSVC is no different in |
| 269 | this respect, and is easily configured to use spaces: Take :menuselection:`Tools |
| 270 | --> Options --> Tabs`, and for file type "Default" set "Tab size" and "Indent |
| 271 | size" to 4, and select the "Insert spaces" radio button. |
| 272 | |
Victor Stinner | 2b50186 | 2017-02-13 15:30:05 +0100 | [diff] [blame] | 273 | Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs |
Jim DeLaHunt | 3d707be | 2017-02-13 05:57:13 -0800 | [diff] [blame] | 274 | and spaces are causing problems in leading whitespace. |
Victor Stinner | 2b50186 | 2017-02-13 15:30:05 +0100 | [diff] [blame] | 275 | 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] | 276 | in batch mode. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 277 | |
| 278 | |
| 279 | How do I check for a keypress without blocking? |
| 280 | ----------------------------------------------- |
| 281 | |
abdo | 5d9e657 | 2020-10-20 00:46:21 +0300 | [diff] [blame] | 282 | Use the :mod:`msvcrt` module. This is a standard Windows-specific extension module. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 283 | It defines a function ``kbhit()`` which checks whether a keyboard hit is |
| 284 | present, and ``getch()`` which gets one character without echoing it. |
| 285 | |