Testing branches, merges, different files within branches, etc
Testing python package deployment, travis CI, coveralls and pytest
To install the package you are required to have pip in order to install all the package dependencies (later the pacake itself) Furthermore you are assumed to have python installed. Reffer to [https://www.python.org/downloads/] otherwise.
Depending on your permissions as user, you may choose one of the following options:
Can and Want to install the software for every possible user:
sudo apt-get install python-pip
(adding installation commands for other OSs soon)
Do not have admin privileges
You may want to reffer to [https://gist.github.com/saurabhshri/46e4069164b87a708b39d947e4527298]
TL;DR:
-
Open terminal
-
Download pip:
wget https://bootstrap.pypa.io/get-pip.py
-
Install into local directory:
python get-pip.py --user
-
Add the instalation path to the $PATH environment:
echo -e '#extending path\nexport PATH=$PATH:~/.local/bin' >> ~/.bashrc
-
Reload .bashrc file:
source ~/.bashrc
pip install --user -r requirements.txt
python setup.py install