1
0
Fork 0

Package deps, virtualenv

spacecruft
Jeff Moe 2022-07-31 13:56:14 -06:00
parent 3ff3ac2025
commit 907171d495
1 changed files with 13 additions and 0 deletions

View File

@ -4,6 +4,19 @@ Python based radio frequency satellite tracking.
This is a python port of STRF (https://github.com/cbassa/strf), but will include additional functionality to work with SatNOGS HDF5 artifacts and advanced Doppler curve detection algorithms.
## Installation
Install package dependencies:
```
sudo apt install python3-virtualenv python3-pip
```
Optionally, set up python virtual environment:
```
virtualenv -p python3 env
source env/bin/activate
pip install --upgrade pip
```
Install dependencies with
```