Bonjour,
En python 3.6 sur Windows 7
je dois installer pandas.

Comme il y a un problème de proxy et j'avais l'erreur Errno 11004, j'ai télécharger pandas-0.22.0.tar.gz, décompresser.

J'ai un répertoire pandas-0.22.0 avec fichier setup.py.

Or en lançant la commande :

python setup.py install

Il essaie de télécharger et par la suite échoue:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
 
 
Download error on https://pypi.python.org/simple/numpy/: [Errno 11004] getaddrinfo failed -- Some packages may not be found!
Couldn't find index page for 'numpy' (maybe misspelled?)
J'avais tenté avec pandas-0.22.0-cp36-cp36m-win_amd64.whl

La même erreur:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
 
python -m pip install C:\Users\Downloads\pandas-0.22.0-cp36-cp36m-win_amd64.whl
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.Verifi
edHTTPSConnection object at 0x0000000003D22908>: Failed to establish a new connection: [Errno 11004] getaddrinfo failed',)': /simple/pytz/
Merci pour votre aide.