-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.txt
38 lines (19 loc) · 951 Bytes
/
install.txt
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
34
35
(This is short. For further information see http://docs.python.org/install/)
Start a command line and change to this directory.
You can also use an interactive python command line (ipython).
In this case, the command ``python`` has to be replaced by ``run`` in
the following.
Then:
1) Compile the program. Use one of the following options:
i) by default the multi-core prozessing option is enabled
python setup.py build -f
ii) especially for WINDOWS one may have to specify the compiler (e.g. mingw):
python setup.py build -f -c mingw32
2) If no errors but only warnings have occured copy into packages folder:
i) for current user only:
python setup.py install --user
ii) for all users:
python setup.py install
iii) if you want to create an inplace module which only works
locally, you can use:
python setup.py build_ext -f -i