eive-tmtc/README.md
2022-05-17 14:14:48 +02:00

831 B

TMTC Commander EIVE

Run Linter

Can be used to quickly check validity of script. Install flake8 first

python3 -m pip install flake8

or on Windows

py -m pip install flake8

and then run the lint.py script

./lint.py

Set up virtual environment

Linux

  1. Create virtual environment
python3 -m venv venv
  1. Activate virtual environment
. venv/bin/activate
  1. Install tmtccmd for virtual environment. -e for interactive installation.
cd tmtccmd
python3 -m pip install -e .[gui]

Windows

  1. Create virtual environment
py -m venv .
  1. Activate virtual environment
venv\Scripts\activate.bat
  1. Install tmtccmd for virtual environment. -e for interactive installation.
cd tmtccmd
py -m pip install -e .[gui]