-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
35 lines (26 loc) · 1.09 KB
/
README.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
Recommend using gnu95 as the fortran compiler.
Instructions for windows
building the package:
python setup.py build --compiler=mingw32 --fcompiler=gnu95
Testing the package:
python test.py
this should be run after building and prior to installation.
Installation can follow if all tests have passed
installing the package:
python setup.py install
use --prefix= /dir/to/install to install to a specific location. Defaults to the site-applications of your python
install path
If installing to the default python location, admin rights might be needed.
Instructions for UNIX/Linux
building the package:
python setup.py build --fcompiler=gnu95
Testing the package:
python test.py
this should be run after building and prior to installation.
Installation can follow if all tests have passed
installing the package:
python setup.py install
use --prefix= /dir/to/install to install to a specific location. Defaults to the site-applications of your python
install path
If installing to the default python location, super user rights may be needed, eg
sudo python setup.py install