-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathINSTALL.txt
More file actions
13 lines (10 loc) · 947 Bytes
/
INSTALL.txt
File metadata and controls
13 lines (10 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
OpenOpt, DerApproximator, FuncDesigner are packages written in Python language (www.python.org) + numpy (www.scipy.org/numpy).
They are stand-alone modules, but DerApproximator is required by some nonlinear solvers from OpenOpt and during automatic differentiation for those FuncDesigner oofuns w/o supplied routines for obtaining derivatives, and FuncDesigner models can be solved/optimized by OpenOpt.
To install them all you could just run (with admin rights, + you should have package "python-setuptools" installed)
python install_all
or
python develop_all
Former goes to directories OpenOpt, FuncDesigner, DerApproximator and invokes "python setup.py install" in each of them, latter do same the things with "python setup.py develop" (in-place installation).
For involving installation options beyond defaults you should read setuptools doc, go to these directories and perform "python setup.py ..." with desired options.
HTH,
Dmitrey.