web-dev-qa-db-fra.com

Pip: impossible de trouver une version. Aucune distribution correspondante trouvée

J'essaie d'installer Flask-ACL: https://mikeboers.github.io/Flask-ACL

$ pip search acl | grep -i flask

Flask-ACL (0.0.1) - Access control lists for Flask.
flask-miracle-acl (0.2) - The fabric between the Flask framework and Miracle ACL

Flask-Sandbox (0.1.0)- ACL Route controls for Flask
Flask-SimpleACL (1.2)- Simple ACL extension


$ pip install Flask-ACL

Collecting Flask-ACL
Could not find a version that satisfies the requirement Flask-ACL (from versions: )
No matching distribution found for Flask-ACL

Qu'est-ce qui ne va pas ici?

P.S. Pip a été mis à niveau il y a quelques minutes.

MISE À JOUR:

$ python --version
Python 2.7.3

Je l'exécute sous virtualenv.

pip install -Iv Flask-ACL

Collecting Flask-ACL
1 location(s) to search for versions of Flask-ACL:
* https://pypi.python.org/simple/flask-acl/
Getting page https://pypi.python.org/simple/flask-acl/
Looking up "https://pypi.python.org/simple/flask-acl/" in the cache
Current age based on date: 507
Freshness lifetime from max-age: 600
Freshness lifetime from request max-age: 600
The response is "fresh", returning cached response
600 > 507
Analyzing links from page https://pypi.python.org/simple/flask-acl/
Could not find a version that satisfies the requirement Flask-ACL (from versions: )

Nettoyage en cours ... Aucune distribution correspondante trouvée pour Flask-ACL

Comme je peux le voir, il n'y a pas de tel package sur Pypi:

https://pypi.python.org/simple/flask-acl/

mais celui-ci existe:

https://pypi.python.org/pypi/Flask-ACL

Quel est le problème avec mon pip?

6
smart

Les développeurs de Flask-ACL ont fait une erreur de ne pas avoir réussi à télécharger la bibliothèque Flask-ACL sur PyPi (où pip recherche les modules). vous devrez donc l'installer en utilisant pip depuis leur page GitHub.

Vous pouvez le faire comme ceci:

pip install "git+https://github.com/mikeboers/Flask-ACL"
9
abccd