Skip to content Skip to sidebar Skip to footer

Installing Flask On Windows 7?

I have done this: How to install Flask on Windows? I currently have installed Python 3.4, which includes pip already. When i run pip install flask in windows commandline as admin i

Solution 1:

You could also run Flask on PythonAnywhere or another free Python host - it has the added benefit of being able to access your code anywhere.

Solution 2:

pip is a command line tool, not a Python module or command.

Just run it like:

C:\Python34> pip install flask

instead.

Post a Comment for "Installing Flask On Windows 7?"