blob: e00d68b075d8f8960fa657621c13179fbecd49cc [file] [log] [blame]
Guido van Rossumc561e5d1994-08-23 13:52:46 +00001Python release 1.1
2==================
Guido van Rossum627b2d71993-12-24 10:39:16 +00003
Guido van Rossumc561e5d1994-08-23 13:52:46 +00004==> This is Python version 1.1.
Guido van Rossum627b2d71993-12-24 10:39:16 +00005
Guido van Rossumc561e5d1994-08-23 13:52:46 +00006==> Python 1.1 contains many improvements over 1.0.3, but is almost
7 backward compatible (though the magic number for .pyc file has
8 changed). It comes with build instructions for many more non-UNIX
9 platforms.
Guido van Rossum627b2d71993-12-24 10:39:16 +000010
Guido van Rossum433c8ad1994-08-01 12:07:07 +000011==> If you don't know yet what Python is: it's an interpreted,
12 extensible, embeddable, interactive, object-oriented programming
13 language. For a quick summary of what Python can mean for a
14 UNIX/C programmer, read Misc/BLURB.LUTZ.
Guido van Rossum627b2d71993-12-24 10:39:16 +000015
Guido van Rossum433c8ad1994-08-01 12:07:07 +000016==> If you want to start compiling right away: just type "./configure"
17 in the current directory and when it finishes, type "make". See
18 the section Build Instructions below for more details.
Guido van Rossum627b2d71993-12-24 10:39:16 +000019
Guido van Rossum433c8ad1994-08-01 12:07:07 +000020==> All documentation is in the subdirectory Doc in the form of LaTeX
21 files. In order of importance for new users: Tutorial (tut),
22 Library Reference (lib), Language Reference (ref), Extending
23 (ext). Note that especially the Library Reference is of immense
24 value since much of Python's power (including the built-in data
25 types and functions!) is described there. [XXX The ext document
26 has not been updated to reflect this release yet.]
Guido van Rossum627b2d71993-12-24 10:39:16 +000027
Guido van Rossum433c8ad1994-08-01 12:07:07 +000028==> Python is COPYRIGHTED but free to use for all. See the copyright
29 notice at the end of this file.
Guido van Rossum627b2d71993-12-24 10:39:16 +000030
Guido van Rossum627b2d71993-12-24 10:39:16 +000031
Guido van Rossum433c8ad1994-08-01 12:07:07 +000032Build instructions
33------------------
Guido van Rossum627b2d71993-12-24 10:39:16 +000034
Guido van Rossum433c8ad1994-08-01 12:07:07 +000035Before you start building Python, you must first configure it. This
36entails (at least) running the script "./configure", which figures out
37your system configuration and creates several Makefiles. (This will
38take a minute or two -- please be patient!) When it is done, you are
39ready to run make. Typing "make" in the toplevel directory will
40recursively run make in each of the subdirectories Parser, Objects,
41Python and Modules, creating a library file in each one. The
42executable of the interpreter is built in the Modules subdirectory but
43moved up here when it is built. If you want or need to, you can also
44chdir into each subdirectory in turn and run make there manually
45(do the Modules subdirectory last!). If you run into trouble, first
46see the section Troubleshooting later in this file.
Guido van Rossum627b2d71993-12-24 10:39:16 +000047
Guido van Rossum433c8ad1994-08-01 12:07:07 +000048EXCEPTIONS: on SVR4 derived systems, you need to pass the configure
49script the option --with-svr4. See below for more options you can
50pass to the configure script.
Guido van Rossum627b2d71993-12-24 10:39:16 +000051
Guido van Rossum433c8ad1994-08-01 12:07:07 +000052AIX users: read the file Misc/AIX-NOTES before trying to build.
Guido van Rossum627b2d71993-12-24 10:39:16 +000053
Guido van Rossum433c8ad1994-08-01 12:07:07 +000054Minix users: when using ack, use "CC=cc AR=aal RANLIB=: ./configure"!
Guido van Rossum627b2d71993-12-24 10:39:16 +000055
Guido van Rossum433c8ad1994-08-01 12:07:07 +000056You can configure the interpreter to contain fewer or more built-in
57modules by editing the file Modules/Setup. This file is initially
58copied (when the toplevel Makefile makes Modules/Makefile for the
59first time) from Setup.in; if it does not exist yet, make a copy
60yourself. Never edit Setup.in -- always edit Setup. Read the
61comments in the file for information on what kind of edits you can
62make. When you have edited Setup, Makefile and config.c in Modules
63will automatically be rebuilt the next time you run make in the
64toplevel directory. (There are some example Setup files which you may
65copy to Setup for specific systems; have a look at Setup.*.)
Guido van Rossum627b2d71993-12-24 10:39:16 +000066
Guido van Rossum433c8ad1994-08-01 12:07:07 +000067If you want to change the optimization level of the build, assign to
68the OPT variable on the toplevel make command; e.g. "make OPT=-g" will
Guido van Rossumc561e5d1994-08-23 13:52:46 +000069build a debugging version of Python on most platforms. The default is
70OPT=-O; a value for OPT in the environment when the configure script
71is run overrides this default (likewise for CC; and the initial value
72for LIBS is used as the base set of libraries to link with).
Guido van Rossum433c8ad1994-08-01 12:07:07 +000073
74To test the interpreter that you have just built, type "make test".
75This runs the test set silently, twice (once with no compiled files,
76once with the compiled files left by the previous test run). Each
77test run should print "All tests OK." and nothing more. (The test set
78does not test the built-in modules, but will find most other problems
79with the interpreter.)
80
81To install the interpreter as /usr/local/bin/python, type "make
82install". To install the library as /usr/local/lib/python, type "make
83libinstall". To install the manual page as
84/usr/local/man/man1/python.1, type "make maninstall". To install the
85Emacs editing mode for python, manually copy the file
86Misc/python-mode.el to your local Emacs lisp directory. The directory
87/usr/local can be overridden at configuration time by passing
88--prefix=DIRECTORY to the configure script, or at make time by passing
89"prefix=DIRECTORY" to make. See below for more information on --prefix.
90
91If you plan to do development of extension modules or to embed Python
92in another application and don't want to reference the original source
93tree, you can type "make inclinstall" and "make libainstall" to
94install the include files and lib*.a files, respectively, as
95/usr/local/include/Py/*.h and /usr/local/lib/python/lib/lib*.a. The
96make libainstall target also installs copies of several other files
97used or produced during the build process which are needed to build
98extensions or to generate their Makefiles.
99
100To print the documentation, cd into the Doc subdirectory, type "make"
101(let's hope you have LaTeX installed!), and send the four resulting
102PostScript files (tut.ps, lib.ps, ref.ps, and ext.ps) to the printer.
103See the README file there; you can also build a texinfo version of the
104library manual and from that construct an Emacs info version (the
105hypertext format used by the Emacs "info" command) and an HTML version
106(the hypertext format used by the World Wide Web distributed
107information initiative). You don't need to have LaTeX installed for
108this. Note that the Python archive sites also carry the resulting
109PostScript files, in case you have a PostScript printer but not LaTeX.
110
111Some special cases are handled by passing environment variables or
112options to the configure script:
113
114- The configure script uses gcc (the GNU C compiler) if it finds it.
115If you don't want this, or if this compiler is installed but broken on
116your platform, pass "CC=cc" (or whatever the name of the proper C
117compiler is) in the environment.
118
119- On System V, Release 4 derived systems (e.g. SOLARIS 2, but not
120IRIX 5) you need to call the configure script with the option
121--with-svr4. This is needed so the libraries -lnsl and -lsocket are
122found. (On some other systems, e.g. IRIX 5, these libraries exist but
123are incompatible with other system libraries such as X11 and GL.)
124
125- If you want to install the binaries and the Python library somewhere
126else than in /usr/local/{bin,lib}, you can pass the option
127--prefix=DIRECTORY; the interpreter binary will be installed as
128DIRECTORY/bin/python and the library files as DIRECTORY/lib/python/*.
129If you pass --exec-prefix=DIRECTORY (as well) this overrides the
130installation prefix for architecture-dependent files (like the
131interpreter binary). Note that --prefix=DIRECTORY also affects the
132default module search path (sys.path), when Modules/config.c is
133compiled. Passing make the option prefix=DIRECTORY (and/or
134exec_prefix=DIRECTORY) overrides the prefix set at configuration time;
135this may be more convenient than re-running the configure script if
136you change your mind about the install prefix...
137
Guido van Rossum03d8f741994-08-12 12:45:02 +0000138- You can use the GNU readline library to improve the interactive user
139interface: this gives you line editing and command history when
140calling python interactively. You need to configure build the GNU
141readline library before running the configure script. Its sources are
142no longer distributed with Python; you can ftp them from any GNU
143mirror site, or from its home site:
144ftp://slc2.ins.cwru.edu/pub/dist/readline-2.0.tar.gz (or a higher
145version number -- using version 1.x is not recommended). Pass the
146Python configure script the option --with-readline=DIRECTORY where
147DIRECTORY is the absolute pathname of the directory where you've built
148the readline library. Some hints on building and using the readline
149library:
150
151 - On SGI IRIX 5, you may have to add the following
152 to rldefs.h:
153
154 #ifndef sigmask
155 #define sigmask(sig) (1L << ((sig)-1))
156 #endif
157
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000158 - On most systems, you will have to add #include "rldefs.h" to the
159 top of several source files, and if you use the VPATH feature, you
160 will have to add dependencies of the form foo.o: foo.c to the
161 Makefile for several values of foo.
162
Guido van Rossum03d8f741994-08-12 12:45:02 +0000163 - The readline library requires use of the termcap library. A
164 known problem with this is that it contains entry points which
165 cause conflicts with the STDWIN and SGI GL libraries. The stdwin
166 conflict can be solved (and will be, in the next release of
167 stdwin) by adding a line saying '#define werase w_erase' to the
168 stdwin.h file (in the stdwin distribution, subdirectory H). The
169 GL conflict has been solved in the Python configure script by a
170 hack that forces use of the static version of the termcap library.
171
172 - Check the newsgroup gnu.bash.bugs for specific problems with the
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000173 readline library (I don't get this group here but I've been told
174 that it is the place for readline bugs.)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000175
176- On SGI IRIX, and on Sun SOLARIS 2, you can use multiple threads. To
177enable this, pass --with-thread. In the Modules/Setup file, enable
178the thread module. (Threads aren't enabled automatically because
179there are run-time penalties when support for them is compiled in even
180if you don't use them.)
181
182- On SGI IRIX, there are modules that interface to many SGI specific
183system libraries, e.g. the GL library and the audio hardware. To
184enable these modules, you must edit the Modules/Setup file (or copy the
185Setup.irix4 file to it).
186
187- On SGI IRIX 4, dynamic loading of extension modules is supported by
188the "dl" library by Jack Jansen, which is ftp'able from
189ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. This is enabled (after
190you've ftp'ed and compiled the dl library!) by passing
191--with-sgi-dl=DIRECTORY where DIRECTORY is the absolute pathname of
192the dl library. (Don't bother on IRIX 5, it already has dynamic
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000193linking using SunOS style shared libraries.) Support for this feature
194is deprecated.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000195
196- Dynamic loading of modules is rumoured to be supported on some other
197systems: VAX (Ultrix), Sun3 (SunOS 3.4), Sequent Symmetry (Dynix), and
198Atari ST. This is done using a combination of the GNU dynamic loading
199package (ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z) and an
200emulation of the SGI dl library mentioned above (the emulation can be
201found at ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z). To enable
202this, ftp and compile both libraries, then call the configure passing
203it the option --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY where
204DL_DIRECTORY is the absolute pathname of the dl emulation library and
205DLD_DIRECTORY is the absolute pathname of the GNU dld library. (Don't
206bother on SunOS 4 or 5, they already have dynamic linking using shared
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000207libraries.) Support for this feature is deprecated.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000208
209- It is possible to specify alternative versions for the Math library
210(default -lm) and the C library (default the empty string) using the
211options --with-libm=STRING and --with-libc=STRING, respectively. E.g.
212if your system requires that you pass -lc_s to the C compiler to use
213the shared C library, you can pass --with-libc=-lc_s. These libraries
214are passed after all other libraries, the C library last.
215
216You can also build an "extended" interpreter, using modules that are
217not contained in the Modules directory. Extensions are distributed as
218a separate tar file (currently extensions.tar.Z). See the README file
219there.
220
221
222Building for multiple architectures (using the VPATH feature)
223-------------------------------------------------------------
224
225If your file system is shared between multiple architectures, it
226usually is not necessary to make copies of the sources for each
227architecture you want to support. If the make program supports the
228VPATH feature, you can create an empty build directory for each
229architecture, and in each directory run the configure script (on the
230appropriate machine with the appropriate options). This creates the
231necessary subdirectories and the Makefiles therein. The Makefiles
232contain a line VPATH=... which points to directory containing the
233actual sources.
234
235For example, the following is all you need to build a minimal Python
236in /usr/tmp/python (assuming ~guido/src/python is the toplevel
237directory and you want to build in /usr/tmp/python):
238
239 $ mkdir /usr/tmp/python
240 $ cd /usr/tmp/python
241 $ ~guido/src/python/configure
242 [...]
243 $ make
244 [...]
245 $
246
247To use the readline library in this case, you will have to create a
248subdirectory of your build directory called readline, copy
249readline/Makefile into it, edit the Makefile to contain a proper VPATH
250line (and possibly edit the compiler flags set in the Makefile), and
251pass the configure script a --with-readline=DIRECTORY option giving it
252the absolute (!) pathname of the readline build directory.
253
254Note that Modules/Makefile copies the original Setup file to the build
255directory if it finds no Setup file there. This means that you can
256edit the Setup file for each architecture independently. For this
257reason, subsequent changes to the original Setup file are not tracked
258automatically, as they might overwrite local changes. To force a copy
259of a changed original Setup file, delete the target Setup file. (The
260makesetup script supports multiple input files, so if you want to be
261fancy you can change the rules to create an empty Setup.local if it
262doesn't exist and run it with arguments $(srcdir)/Setup Setup.local;
263however this assumes that you only need to add modules.)
264
265
266Troubleshooting
267---------------
268
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000269See section 3 of the FAQ (in subdirectory Misc of the distribution)
270for hints on what can go wrong, and how to fix it.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000271
272
273Building on non-UNIX systems
274----------------------------
275
276On non-UNIX systems, you will have to fake the effect of running the
277configure script manually. A good start is to copy the file
278config.h.in to config.h and edit the latter to reflect the actual
279configuration of your system. Most symbols must simply be defined as
2801 only if the corresponding feature is present and can be left alone
281otherwise; however RETSIGTYPE must always be defined, either as int or
282as void, and the *_t type symbols must be defined as some variant of
283int if they need to be defined at all. Then arrange that the symbol
284HAVE_CONFIG_H is defined during compilation (usually by passing an
285argument of the form `-DHAVE_CONFIG_H' to the compiler, but this is
286necessarily system-dependent).
287
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000288I have tried to collect instructions, Makefiles and additional sources
289for various platforms in this release. The following directories
290exist:
291
292Mac/ Apple Macintosh, using THINK C 6.0 or MPW 3.2.
293Dos/ MS-DOS and Windows 3.1, using Microsoft C.
294Nt/ Windows NT, using Microsoft Visual C/C++.
295Os2/ OS/2.
296
297Most of these instructions were last tested with a previous Python
298release, so you may still experience occasional problems. If you have
299fixes or suggestions, please let me know and I'll try to incorporate
300them in the next release.
301
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000302
303Distribution structure
304----------------------
305
306Most subdirectories have their own README file. Most files have
307comments.
308
309ChangeLog A raw list of changes since the first 1.0.0 BETA release
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000310Demo/ Demonstration scripts, modules and programs
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000311Doc/ Documentation (in LaTeX)
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000312Extensions/ Extension modules (distributed separately)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000313Grammar/ Input for the parser generator
314Include/ Public header files
315Lib/ Python library modules
316Makefile Rules for building the distribution
317Misc/ Miscellaneous files
318Modules/ Implementation of most built-in modules
319Objects/ Implementation of most built-in object types
320Parser/ The parser and tokenizer and their input handling
321Python/ The "compiler" and interpreter
322README The file you're reading now
323acconfig.h Additional input for the autoheader program
324config.h Configuration header (generated)
325config.h.in Source from which config.status creates config.h
326config.status status from last run of configure script (generated)
327configure Configuration shell script (GNU autoconf output)
328configure.in Configuration specification (GNU autoconf input)
329tags, TAGS Tags files for vi and Emacs (generated)
330python The executable interpreter (generated)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000331
332
333Ftp access
334----------
335
Guido van Rossum03d8f741994-08-12 12:45:02 +0000336The latest Python source distribution can be ftp'ed from
337ftp://ftp.cwi.nl/pub/python/python<version>.tar.gz. You can also find
338PostScript of the main Python documentation there, Macintosh and PC
339binaries, and the latest STDWIN source distribution (in directory
340/pub/stdwin). oFr mirror sites, see the list in the FAQ (Misc/FAQ
341this directory).
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000342
343
Guido van Rossum03d8f741994-08-12 12:45:02 +0000344Mailing list and Newsgroup
345--------------------------
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000346
Guido van Rossum03d8f741994-08-12 12:45:02 +0000347There are a mailing list and a newsgroup devoted to Python
348programming, design and bugs. The newsgroup, comp.lang.python,
349contains exactly the same messages as the mailing list. To subscribe
350to the mailing list, send mail containing your real name and e-mail
351address in Internet form to "python-list-request@cwi.nl".
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000352
353
354Author
355------
356
357Guido van Rossum
358CWI, dept. CST
359P.O. Box 94079
3601090 GB Amsterdam
361The Netherlands
362
363E-mail: Guido.van.Rossum@cwi.nl
364
365
366Copyright Notice
367----------------
368
369The Python source is copyrighted, but you can freely use and copy it
370as long as you don't change or remove the copyright:
371
372Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
373Amsterdam, The Netherlands.
374
375 All Rights Reserved
376
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000377Permission to use, copy, modify, and distribute this software and its
378documentation for any purpose and without fee is hereby granted,
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000379provided that the above copyright notice appear in all copies and that
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000380both that copyright notice and this permission notice appear in
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000381supporting documentation, and that the names of Stichting Mathematisch
382Centrum or CWI not be used in advertising or publicity pertaining to
383distribution of the software without specific, written prior permission.
384
385STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
386THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
387FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
388FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
389WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
390ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
391OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
392
393
394Signature
395---------
Guido van Rossum627b2d71993-12-24 10:39:16 +0000396
397--Guido van Rossum, CWI, Amsterdam <Guido.van.Rossum@cwi.nl>
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000398<URL:http://www.cwi.nl/cwi/people/Guido.van.Rossum.html>