Skip to content

28kayak/flask-desktop-app

Repository files navigation

Descktop App with Flask

Start App

pyenv exec python3 main.py
#OR 
./start.sh

create a new env with virtual env python

#craete a new env
pyenv virtualenv <python-version> <env-name>

#set the new env as local env 
pyenv local <env-name>

#download whatever you need
pyenv exec pip install <lib-name>
#freeze
pyenv exec pip freeze -l > requirements.txt

Reference

pyenv and virtualenv usages

Flask

いつか使いたい