Installation

The easiest way to install xxxpython_package_namexxx is to use pip (here we show the install inside of a conda environment):

conda create -n xxxpython_package_namexxx python=3.7 pip
conda activate xxxpython_package_namexxx
pip install xxxpython_package_namexxx

Or you can clone the github repo and install from a local version of the code:

git clone git@github.com:thespacedoctor/xxxpython_package_namexxx.git
cd xxxpython_package_namexxx
python setup.py install

To upgrade to the latest version of xxxpython_package_namexxx use the command:

pip install xxxpython_package_namexxx --upgrade

To check installation was successful run xxxpython_package_namexxx -v. This should return the version number of the install.

Development

If you want to tinker with the code, then install in development mode. This means you can modify the code from your cloned repo:

git clone git@github.com:thespacedoctor/xxxpython_package_namexxx.git
cd xxxpython_package_namexxx
python setup.py develop

Pull requests are welcomed!