Installation¶
Stable Release¶
To install SatSim, download the python wheel file from GitLab releases:
Then run this command in your terminal from the location of the python wheel file.
$ pip3 install satsim-VERSION-py2.py3-none-any.whl
If you don’t have pip installed, this Python installation guide can guide you through the process.
From Sources¶
The sources for SatSim can be downloaded from the GitLab repo.
You can either clone the repository:
$ git -c http.sslVerify=false clone https://gitlab.pacificds.com/machine-learning/satsim.git
Or download the tarball:
$ curl -k -OL https://gitlab.pacificds.com/machine-learning/satsim/-/archive/master/satsim-master.tar.gz
Once you have a copy of the source, change directory into SatSim and install it with:
$ python3 setup.py install -or- make install (may require sudo or --user)
If you will be modifying code (see contributing page for more details), you should install with:
$ python3 setup.py develop -or- make develop