web-dev-qa-db-fra.com

Problèmes liés à l'installation facile de python

J'ai un problème avec easy_install pour matplotlib-venn. Je suis sur un ordinateur Windows en utilisant python2.7 . Je soupçonne que le chemin est incorrect, mais je ne sais pas comment résoudre le problème . Quelqu'un pourrait-il m'aider? la sortie d'essayer d'exécuter la commande easy_install dans le prompteur CMD.

C:\Python27\Scripts>easy_install matplotlib-venn
Searching for matplotlib-venn
Reading https://pypi.python.org/simple/matplotlib-venn/
Download error on https://pypi.python.org/simple/matplotlib-venn/: [Errno 11004]
 getaddrinfo failed -- Some packages may not be found!
Couldn't find index page for 'matplotlib-venn' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
Download error on https://pypi.python.org/simple/: [Errno 11004] getaddrinfo fai
led -- Some packages may not be found!
No local packages or download links found for matplotlib-venn
error: Could not find suitable distribution for Requirement.parse('matplotlib-ve
nn')
install for matplotlib-venn package

Résultat de l’essai de la suggestion d’installation de pip:

C:\Python27\Scripts>easy_install pip
Searching for pip
Best match: pip 1.4.1
Adding pip 1.4.1 to easy-install.pth file
Installing pip-script.py script to C:\Python27\Scripts
Installing pip.exe script to C:\Python27\Scripts
Installing pip.exe.manifest script to C:\Python27\Scripts
Installing pip-2.7-script.py script to C:\Python27\Scripts
Installing pip-2.7.exe script to C:\Python27\Scripts
Installing pip-2.7.exe.manifest script to C:\Python27\Scripts
Using c:\python27\lib\site-packages
Processing dependencies for pip
Finished processing dependencies for pip
C:\Python27\Scripts>pip install matplotlib-venn
Downloading/unpacking matplotlib-venn
  Cannot fetch index base URL https://pypi.python.org/simple/
  Could not find any downloads that satisfy the requirement matplotlib-venn
Cleaning up...
No distributions at all found for matplotlib-venn
Storing complete log in C:\Users\jherman8\pip\pip.log
7
jonas

Basé sur 

Download error on https://pypi.python.org/simple/matplotlib-venn/: [Errno 11004] getaddrinfo failed 

et 

Cannot fetch index base URL https://pypi.python.org/simple/ 

il semble que vous ayez un problème de réseau. Faites-vous fonctionner votre machine derrière un pare-feu ou un proxy?

Pour que easy_install fonctionne derrière un proxy, vous devez configurer les environnements nécessaires, par exemple

set http_proxy="user:password@server:port"
set https_proxy="user:password@server:port"

Pour pip, vous pouvez utiliser l'argument -proxy. Plus de détails sur l'utilisation de pip derrière le proxy, voir dans ce fil de discussion: Comment utiliser pip sur les fenêtres derrière un proxy authentifiant

16
alko

Je pense que c'est ta solution

easy_install pip
pip install matplotlib-venn

Aucun module matplotlib-venn dans easy_install

Et pour l’avenir, utilisez pip pour installer n’importe quel paquet pour python.

2
itdxer