Installing optimap¶
optimap
is available for Windows, Mac OSX, and Linux.
optimap
requires Python 3.8 or later. To install Python we recommend installing the Anaconda distribution, which includes Python and many useful packages for scientific computing, or by installing Python directly.
Tip
optimap relies heavily on NumPy and Matplotlib. We recommend the Scientific Python Lectures and the Python Data Science Handbook for an introduction to Python and these libraries.
Warning
This Installation Guide is currently work in progress. We will add more information soon.
Installing optimap on Windows¶
Installing optimap
on Windows requires Python
, Numpy
and matplotlib
to be installed on the system.
Installing optimap on Mac OSX¶
Installing optimap
on Mac OSX requires Python
, Numpy
and matplotlib
to be installed on the system. On Mac OSX, Homebrew is a popular and very useful, freely available package manager with which one can install Python
, Numpy
and matplotlib
. Paste and execute the following command in the Mac OSX terminal to install Homebrew
: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
. Note that Mac OSX has a native Python version installed and it is necessary to install a separate Python 3.8 version or later. Next, you need to install pip
, which is a package installer specifically for Python packages. You can install pip
using Homebrew: brew install pip
. You can then use pip
to install optimap:
pip install optimap
Installing optimap on Linux¶
With pip
and Python
already installed it is very straight-forward to install optimap
on Linux systems:
pip install optimap
This will install the core functionality of optimap.
To update optimap to the latest version run pip install --upgrade optimap
. See Contributing for instructions on how to install optimap from source.