Open main menu

Changes

Minfx

813 bytes added, 10:39, 31 July 2014
Created page with "= Minfx = The minfx project is a Python package for numerical optimisation, being a large collection of standard minimisation algorithms. The name minfx is simply a shortening..."
= Minfx =
The minfx project is a Python package for numerical optimisation, being a large collection of standard minimisation algorithms. The name minfx is simply a shortening of the mathematical expression min f(x).

= Install =
Guides to install on different systems.

== Linux and Mac ==
Remember to check, if there are newer versions of [http://download.gna.org/minfx minfx]. <br>
The [https://gna.org/projects/minfx/ minfx] library can be installed on all UNIX systems by typing:
<source lang="bash">
# Change to bash, if in tcsh shell
bash

v=1.0.9

cd $HOME/Downloads
curl http://download.gna.org/minfx/minfx-$v.tar.gz -o minfx-$v.tar.gz
tar -xzf minfx-$v.tar.gz
cd minfx-$v

# Then either
sudo pip install -e .
# Or
pip install .

cd ..
</source>

== Windows ==


== See also ==
[[Category:Installation]]