blob: a28d60c82f4fe1b1ddfd0c0145c63444cedf4d0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
Pyrex - Installation Instructions
=================================
You have two installation options:
(1) Run the setup.py script in this directory
as follows:
python setup.py install
This will install the Pyrex package
into your Python system.
OR
(2) If you prefer not to modify your Python
installation, arrange for the directory
containing this file (INSTALL.txt) to be in
your module search path.
For example, create a pyrex.pth file in your
Python installation's Lib/site-packages
directory and insert a line containing the
fully qualified path to the directory containing
this file.
On unix, also put the bin directory on your PATH.
On Win32 copy the pyrexc.py file to your Python
installation's Scripts directory, which should
already be on the PATH.
See README.txt for pointers to other documentation.
|