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
|
Installation instructions for all systems
=========================================
Requirements:
-------------
- Python v3.7 (or higher)
http://www.python.org/
- ODE 0.16
http://ode.org/
- Cython 0.26.1
ODE can be installed by running the install_ode.sh script.
Cython is installed automatically by pip as a dependency.
Installation:
-------------
The package uses the Python distutils, so you can build it by calling
python setup.py build
and install it by calling
python setup.py install
which installs the package on your system.
See the "Installing Python Modules" manual inside your Python documentation
or at http://docs.python.org/inst/inst.html if you want to customize the
build process or the target location.
Note: It is assumed that the ODE library is already compiled and installed
somewhere on your system. The setup script will try to find the ODE
installation on your system by trying several common locations. However, if the
installation can not be found, you will have to modify the setup.py script and
add the appropriate paths.
|