Installation¶
From PyPi¶
The simplest and recommended way to install Smapy is using pip:
pip install smapy
If you don’t have pip installed, this Python installation guide can guide you through the process.
From sources¶
The sources for Smapy can be downloaded from the Github repo.
You can either clone the public repository:
$ git clone git://github.com/csala/smapy
Or download the tarball:
$ curl -OL https://github.com/csala/smapy/tarball/master
Once you have a copy of the source, you can install it running the next command inside the project folder:
$ make install
Development¶
If you are installing Smapy in order to modify its code, the installation must be done from its sources, in the editable mode, and also including some additional dependencies in order to be able to run the tests and build the documentation:
make install-develop