blob: 4b9bccc41fa870a2ddd3e6b23d56cf6ee1f6efc1 [file] [log] [blame]
Guido van Rossumf71f6131996-09-03 15:08:36 +00001Python 1.4beta3 for Windows NT 3.5
2==================================
3
4The zip file pyth14b3.zip contains a preliminary binary release of
5Python 1.4beta3 for Windows NT 3.5, with Tcl/Tk support. The
6installation has not been tested on Windows '95 or Windows 3.1 with
7Win32s. For general information on Python, see http://www.python.org/.
8
9To install:
10
11Unzip the archive in the root of a file system with enough space. It
12will create a directory \Python1.4b3 containing subdirectories Bin and
13Lib and files setup.bat and setup.py. (If you don't have a zip
14program that supports long filenames, get the file winzip95.exe and
15install it -- this is WinZip 6.1 for 32-bit Windows systems.)
16
17Run the SETUP.BAT file found in directory just created. When it is
18done, press Enter.
19
20To use:
21
22Python runs in a console (DOS) window. From the File Manager, run the
23file python.exe found in the Bin subdirectory. You can also drag it
24to a program group of your choice for easier access. Opening any file
25ending in .py from the file manager should run it.
26
27To use with Tkinter:
28
29Get the file win41p1.exe from here or from ftp site ftp.sunlabs.com,
30directory /pub/tcl/. This is a self-extracting archive containing the
31Tcl/Tk distribution for Windows NT. Don't use an older version.
32
33Using the control panel, set the TCL_LIBRARY and TK_LIBRARY
34environment variables. E.g. if you installed Tcl/Tk in C:\TCL (the
35default suggested by the installer), set TCL_LIBRARY to
36"C:\TCL\lib\tcl7.5" and set TK_LIBRARY to "C:\TCL\lib\tk4.1".
37
38Once Tcl/Tk is installed, you should be able to type the following
39commands in Python:
40
41 >>> import Tkinter
42 >>> Tkinter._test()
43
44This creates a simple test dialog box (you may have to move the Python
45window a bit to see it). Click on OK to get the Python prompt back.
46
47August 30, 1996
48
49--Guido van Rossum (home page: http://www.python.org/~guido/)