0

I am following this tutorial to set up a Flask application.

I am up to the step:

pip install --editable .

When I run this I get the error:

Could not find a version that satisfies the requirement flask (from flaskr==0.0.0) (from versions: ) No matching distribution found for flask (from flaskr==0.0.0)

How do I install the application?

user2260199
  • 877
  • 4
  • 13
  • 20
  • Solution to my problem is here: https://stackoverflow.com/questions/49748063/pip-install-fails-for-every-package-could-not-find-a-version-that-satisfies-th – user2260199 Apr 25 '18 at 06:36

1 Answers1

0
pip install --editable

This requires being run at root directory. Make sure you are running it at root directory. In your case that is flaskr/ the main folder of your project.

K P
  • 854
  • 7
  • 19