0 votes
in Python Flask by
How to get the development version of the Flask framework?

1 Answer

0 votes
by
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
...