1:tocdepth: 2 2 3.. highlightlang:: none 4 5.. _windows-faq: 6 7===================== 8Python on Windows FAQ 9===================== 10 11.. only:: html 12 13 .. contents:: 14 15.. XXX need review for Python 3. 16 XXX need review for Windows Vista/Seven? 17 18 19How 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 24obvious; otherwise, you might need a little more guidance. 25 26Unless 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 29search bar by searching for ``cmd``. You should be able to recognize 30when you have started such a window because you will see a Windows "command 31prompt", which usually looks like this: 32 33.. code-block:: doscon 34 35 C:\> 36 37The letter may be different, and there might be other things after it, so you 38might just as easily see something like: 39 40.. code-block:: doscon 41 42 D:\YourName\Projects\Python> 43 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 49program called the Python *interpreter*. The interpreter reads your script, 50compiles 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 54"py" as an instruction to start the interpreter. If you have opened a 55command window, you should try entering the command ``py`` and hitting 56return: 57 58.. code-block:: doscon 59 60 C:\Users\YourName> py 61 62You should then see something like: 63 64.. code-block:: pycon 65 66 Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32 67 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 73by entering a few expressions of your choice and seeing the results: 74 75.. code-block:: pycon 76 77 >>> print("Hello") 78 Hello 79 >>> "Hello" * 3 80 'HelloHelloHello' 81 82Many people use the interactive mode as a convenient yet highly programmable 83calculator. 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. 87 88You may also find that you have a Start-menu entry such as :menuselection:`Start 89--> Programs --> Python 3.x --> Python (command line)` that results in you 90seeing the ``>>>`` prompt in a new window. If so, the window will disappear 91after you call the :func:`exit` function or enter the :kbd:`Ctrl-Z` 92character; Windows is running a single "python" 93command in the window, and closes it when you terminate the interpreter. 94 95Now 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:: 101 102 C:\Users\YourName> 103 104So now you'll ask the ``py`` command to give your script to Python by 105typing ``py`` followed by your script path:: 106 107 108 C:\Users\YourName> py Desktop\hello.py 109 hello 110 111How do I make Python scripts executable? 112---------------------------------------- 113 114On Windows, the standard Python installer already associates the .py 115extension 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 121Why 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 138How do I make an executable from a Python script? 139------------------------------------------------- 140 141See `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. 143`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 147 148Is a ``*.pyd`` file the same as a DLL? 149-------------------------------------- 150 151Yes, .pyd files are dll's, but there are a few differences. If you have a DLL 152named ``foo.pyd``, then it must have a function ``PyInit_foo()``. You can then 153write Python "import foo", and Python will search for foo.pyd (as well as 154foo.py, foo.pyc) and if it finds it, will attempt to call ``PyInit_foo()`` to 155initialize 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 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 175 number such as "33" for Python 3.3. 176 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 180 so-called "import lib" corresponding to :file:`python{NN}.dll`. It merely 181 defines symbols for the linker.) 182 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 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 193 .. XXX what about static linking? 194 1952. 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. 220 PyRun_SimpleString("import myApp"); // Import the shadow class. 221 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 259How 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 271Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs 272and spaces are causing problems in leading whitespace. 273You may also run the :mod:`tabnanny` module to check a directory tree 274in batch mode. 275 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