Forums

Python 2 and flask version doubt

I am currently running a Python 2.7.10 and I have installed flask 0.10.1 using pip. So the issue is: When I am on the page where I have to choose my python and flask versions, the flask 0.10.1 is shown along with python 3.3 and 3.4; whereas in case of python 0.9 the flask version is 0.9

So I am not sure what to choose, because I feel if I choose python 2.7 so it might break my code from the flask side as its a higher version

Please let me know what to do.

I don't think there's much difference between flask 0.9 and 0.10, so I wouldn't worry too much about it. Alternatively, you can use a virtualenv to get the latest version of flask.

Thanks, @harry. I did that using the virtualenv, and its working completely fine.