Answers for "do i need to instal flask to run flask app"

6

flask install

# install flask (basic, if path is not set yet)
py -m pip install flask
# or set PATH to use pip:
setx PATH "%PATH%;C:<pathtopythondirectory>Scripts"
pip install flask
# if "connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed" [!]:
py -m pip install --trusted-host pypi.python.org pip flask
# if PermissionError: [WinError 5] Access is denied
py -m pip install --user flask
# or via creating a virtual environment venv:
py -m venv c:pathtonewenvironment
# then execute:
c:pathtonewenvironmentScriptsactivate.bat
Posted by: Guest on March-17-2021
5

flask how to run app

$ export FLASK_APP=hello.py
$ python -m flask run
 * Running on http://127.0.0.1:5000/
Posted by: Guest on April-03-2020

Python Answers by Framework

Browse Popular Code Answers by Language