diff options
author | CAM Gerlach <CAM.Gerlach@Gerlach.CAM> | 2022-05-10 06:30:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 06:30:32 (GMT) |
commit | f1bbcba74f77eff2a4c0881f3d529f3bf0664d40 (patch) | |
tree | a18f0871e32ad988c3690b325cc8b6b0f1bd4f5a /PC | |
parent | 7c638e64050778f2e0052ec9f84cd202b8aedfce (diff) | |
download | cpython-f1bbcba74f77eff2a4c0881f3d529f3bf0664d40.zip cpython-f1bbcba74f77eff2a4c0881f3d529f3bf0664d40.tar.gz cpython-f1bbcba74f77eff2a4c0881f3d529f3bf0664d40.tar.bz2 |
gh-76773: Update docs mentioning no-longer-supported Windows versions & features (GH-92529)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/readme.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PC/readme.txt b/PC/readme.txt index 0a96d26..4e6dcf9 100644 --- a/PC/readme.txt +++ b/PC/readme.txt @@ -18,7 +18,7 @@ All PC ports use this scheme to try to set up a module search path: 1) The script location; the current directory without script. 2) The PYTHONPATH variable, if set. - 3) For Win32 platforms (NT/95), paths specified in the Registry. + 3) Paths specified in the Registry. 4) Default directories lib, lib/win, lib/test, lib/tkinter; these are searched relative to the environment variable PYTHONHOME, if set, or relative to the executable and its @@ -26,8 +26,8 @@ All PC ports use this scheme to try to set up a module search path: or the current directory (not useful). 5) The directory containing the executable. -The best installation strategy is to put the Python executable (and -DLL, for Win32 platforms) in some convenient directory such as +The best installation strategy is to put the Python executable and +DLL in some convenient directory such as C:/python, and copy all library files and subdirectories (using XCOPY) to C:/python/lib. Then you don't need to set PYTHONPATH. Otherwise, set the environment variable PYTHONPATH to your Python search path. |