Guido van Rossum | ae1b5b2 | 2000-06-30 13:00:32 +0000 | [diff] [blame] | 1 | Welcome to the "PC" subdirectory of the Python distribution
|
| 2 | ***********************************************************
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 3 |
|
Guido van Rossum | 1bb7734 | 2000-11-13 17:24:13 +0000 | [diff] [blame] | 4 | *** Note: the project files for MS VC++ 6.0 are now in the
|
Guido van Rossum | a0e6be7 | 1999-04-12 14:49:01 +0000 | [diff] [blame] | 5 | *** PCbuild directory. See the file readme.txt there for build
|
| 6 | *** instructions. There is some information below that might
|
| 7 | *** still be relevant.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 8 |
|
| 9 | This "PC" subdirectory contains complete project files to make
|
Guido van Rossum | a0e6be7 | 1999-04-12 14:49:01 +0000 | [diff] [blame] | 10 | several older PC ports of Python, as well as all the PC-specific
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 11 | Python source files. It should be located in the root of the
|
| 12 | Python distribution, and there should be directories "Modules",
|
| 13 | "Objects", "Python", etc. in the parent directory of this "PC"
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 14 | subdirectory. Be sure to read the documentation in the Python
|
| 15 | distribution.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 16 |
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 17 | Python requires library files such as string.py to be available in
|
| 18 | one or more library directories. The search path of libraries is
|
| 19 | set up when Python starts. To see the current Python library search
|
| 20 | path, start Python and enter "import sys" and "print sys.path".
|
| 21 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 22 | All PC ports use this scheme to try to set up a module search path:
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 23 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 24 | 1) The script location; the current directory without script.
|
| 25 | 2) The PYTHONPATH variable, if set.
|
| 26 | 3) For Win32 platforms (NT/95), paths specified in the Registry.
|
| 27 | 4) Default directories lib, lib/win, lib/test, lib/tkinter;
|
| 28 | these are searched relative to the environment variable
|
| 29 | PYTHONHOME, if set, or relative to the executable and its
|
| 30 | ancestors, if a landmark file (Lib/string.py) is found ,
|
| 31 | or the current directory (not useful).
|
| 32 | 5) The directory containing the executable.
|
| 33 |
|
| 34 | The best installation strategy is to put the Python executable (and
|
| 35 | DLL, for Win32 platforms) in some convenient directory such as
|
| 36 | C:/python, and copy all library files and subdirectories (using XCOPY)
|
| 37 | to C:/python/lib. Then you don't need to set PYTHONPATH. Otherwise,
|
| 38 | set the environment variable PYTHONPATH to your Python search path.
|
| 39 | For example,
|
Guido van Rossum | ffeb5938 | 1997-12-17 21:27:23 +0000 | [diff] [blame] | 40 | set PYTHONPATH=.;d:\python\lib;d:\python\lib\win;d:\python\lib\dos-8x3
|
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 41 |
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 42 | There are several add-in modules to build Python programs which use
|
| 43 | the native Windows operating environment. The ports here just make
|
| 44 | "QuickWin" and DOS Python versions which support a character-mode
|
| 45 | (console) environment. Look in www.python.org for Tkinter, PythonWin,
|
| 46 | WPY and wxPython.
|
| 47 |
|
| 48 | To make a Python port, start the Integrated Development Environment
|
| 49 | (IDE) of your compiler, and read in the native "project file"
|
| 50 | (or makefile) provided. This will enable you to change any source
|
| 51 | files or build settings so you can make custom builds.
|
| 52 |
|
Tim Peters | 76f373d | 2001-07-26 21:34:59 +0000 | [diff] [blame] | 53 | pyconfig.h An important configuration file specific to PC's.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 54 |
|
| 55 | config.c The list of C modules to include in the Python PC
|
| 56 | version. Manually edit this file to add or
|
| 57 | remove Python modules.
|
| 58 |
|
| 59 | testpy.py A Python test program. Run this to test your
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 60 | Python port. It should produce copious output,
|
| 61 | ending in a report on how many tests were OK, how many
|
| 62 | failed, and how many were skipped. Don't worry about
|
| 63 | skipped tests (these test unavailable optional features).
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 64 |
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 65 |
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 66 | Additional files and subdirectories for 32-bit Windows
|
| 67 | ======================================================
|
| 68 |
|
Guido van Rossum | e34b7de | 1997-05-19 20:01:57 +0000 | [diff] [blame] | 69 | python_nt.rc Resource compiler input for python15.dll.
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 70 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 71 | dl_nt.c, import_nt.c
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 72 | Additional sources used for 32-bit Windows features.
|
| 73 |
|
Guido van Rossum | 831c258 | 1997-08-14 22:57:33 +0000 | [diff] [blame] | 74 | getpathp.c Default sys.path calculations (for all PC platforms).
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 75 |
|
| 76 | dllbase_nt.txt A (manually maintained) list of base addresses for
|
| 77 | various DLLs, to avoid run-time relocation.
|
| 78 |
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 79 | example_nt A subdirectory showing how to build an extension as a
|
| 80 | DLL.
|
| 81 |
|
Guido van Rossum | 082d289 | 1997-05-16 16:24:09 +0000 | [diff] [blame] | 82 |
|
Guido van Rossum | 0ba48ba | 1997-11-22 21:58:14 +0000 | [diff] [blame] | 83 | IBM VisualAge C/C++ for OS/2
|
| 84 | ============================
|
| 85 |
|
Guido van Rossum | cee1dca | 1997-12-05 22:06:23 +0000 | [diff] [blame] | 86 | See os2vacpp/readme.txt. This platform is supported by Jeff Rush.
|
Guido van Rossum | 1bb7734 | 2000-11-13 17:24:13 +0000 | [diff] [blame] | 87 |
|
| 88 |
|
| 89 | Note for Windows 3.x and DOS users
|
| 90 | ==================================
|
| 91 |
|
| 92 | Neither Windows 3.x nor DOS is supported any more. The last Python
|
| 93 | version that supported these was Python 1.5.2; the support files were
|
| 94 | present in Python 2.0 but weren't updated, and it is not our intention
|
| 95 | to support these platforms for Python 2.x.
|