-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathINSTALL.txt
57 lines (35 loc) · 1.6 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
==================
EGADS Installation
==================
Information about EGADS and the latest release can be found at:
!!!! http://www.eufar.net/software-tools/tool/eufar-general-airborne-data-processing-software-core-da-cedg-osr !!!!
Prerequisites
=============
To use EGADS, the following packages must be installed:
1. Python 2.7 or newer.
2. numpy 1.10.1 or newer.
3. scipy 0.15.0 or newer.
4. Python netCDF4 libraries 1.1.9 or newer
5. python_dateutil 2.4.2 or newer.
Installation
============
EGADS is a pure Python distribution, thus, it does not need to built. However,
to use it, it must be installed to a location on the Python path. To install
EGADS (assuming priviledged user rights), run the following command from the egads directory:
python setup.py install
or
pip install egads
To install as an unpriviledged user, or to install to a directory of your choosing, the following command can be used:
python setup.py install --prefix MYDIR
For information on other install options the --help option can be used:
python setup.py install --help
On Linux systems, the installation of EGADS in the user home directory is encouraged to ensure the proper operation of the EGADS logging system.
If EGADS requirements in term of dependecies are full filled and/or if the user wants to avoid their installation, the use of the following option is encouraged:
python setup.py install --no-dep
or
pip install egads --no-dep
Testing
=======
To test the EGADS installation, run the run_test.py Python script, or from within Python run the following commands:
>>> import egads
>>> egads.test()