run it :
$ python -m venv .env $ source .env/bin/activate $ pip install -r requirements.txt $ python app.py
– package a standalone executable
$ pip install pyinstaller $ pyinstaller app.spec
– quit virtual environment
$ deactivate
run it :
$ python -m venv .env $ source .env/bin/activate $ pip install -r requirements.txt $ python app.py
– package a standalone executable
$ pip install pyinstaller $ pyinstaller app.spec
– quit virtual environment
$ deactivate