How can you run Flask app which uses a specific version of python?
On my env "python" = python2.7 and "python3" = python3.6. I have installed Flask using pip3. I start the app with FLASK_APP=app.py flask run
. It uses python2.7 to execute, I would like it to use python3.6.
Also tried adding #!flask/bin/python3
to app.py, but it did not have an effect.