You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
4.2 KiB

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