Installation
There are two preferable ways to install Moran [Py]cess: either from the Python Package Index or the Anaconda Cloud service. Both of them require stable internet connection.
Install from Python Package Index
To install our Python package in the current working environment please run the pip command:
$ pip install moranpycess
All of the dependencies will be installed alongside automatically. Their versions are specified in the setup configuration file.
Install from Anaconda Cloud
In case one uses conda package manager our software might be installed with:
$ conda install -c angrymaciek moranpycess
And again, the dependencies are taken care of automatically. Please beware that this installation method requires conda>=4.3 version.
Alternatives
We have also prepared a container with the package and uploaded it to DockerHub. To pull it (provided that a docker deamon is running) please execute:
$ docker pull angrymaciek/moranpycess:1.1.0
Warning
DockerHub regularly removes unused images from their servers. It might happen that in the future our Moran [Py]cess image will be deleted.
At last, if all of the above methods fail, one can still manually clone the repository from GitHub and build/install our package from the command line:
$ https://github.com/AngryMaciek/angry-moran-simulator.git
$ cd angry-moran-simulator
$ python setup.py install