Login
Remember
Register
Ask a Question
How to get the development version of the Flask framework?
0
votes
asked
Dec 23, 2022
in
Python Flask
by
john ganales
How to get the development version of the Flask framework?
flask-framework
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 23, 2022
by
john ganales
The development version of the Flask framework can be obtained using the below-mentioned commands.
git clone
https://github.com/pallets/flask
cd flask && python3 setup.py develop
...