venv
to manage the development environment.virtualenv
$ python3 -m venv venv
virtualenv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ python main.py
Alternatively, you can set main.py
as executable and run `main.py as a script
$ chmod +x main.py # only do this once
$ ./main.py
Python 3.6
or greater is required along with pip