|
Revision 168, 0.9 kB
(checked in by dmitrey, 2 years ago)
|
move
|
| Line | |
|---|
| 1 |
OpenOpt, DerApproximator, FuncDesigner are packages written in Python language (www.python.org) + numpy (www.scipy.org/numpy). |
|---|
| 2 |
|
|---|
| 3 |
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. |
|---|
| 4 |
|
|---|
| 5 |
To install them all you could just run (with admin rights, + you should have package "python-setuptools" installed) |
|---|
| 6 |
python install_all |
|---|
| 7 |
or |
|---|
| 8 |
python develop_all |
|---|
| 9 |
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). |
|---|
| 10 |
For involving installation options beyond defaults you should read setuptools doc, go to these directories and perform "python setup.py ..." with desired options. |
|---|
| 11 |
|
|---|
| 12 |
HTH, |
|---|
| 13 |
Dmitrey. |
|---|