J'ai pu installer Django une fois dans un environnement virtuel. Maintenant, chaque fois que j'essaie de l'installer avec
pip installer Django == 2.07
il retourne:
La désérialisation de l'entrée du cache a échoué, entrée ignorée Nouvelle tentative (nouvelle tentative (total = 4, connexion = aucune, lecture = aucune, redirection = aucune, statut = aucune)) après la rupture de la connexion avec 'ProxyError (' Connexion impossible au proxy. ', NewConnectionError (': impossible d'établir une nouvelle connexion : [Errno 61] Connexion refusée ',))': /simple/Django/ Nouvelle tentative (nouvelle tentative (total = 3, connexion = aucune, lecture = aucune, redirection = aucune, statut = aucune)) après la rupture de la connexion par 'ProxyError (' Connexion impossible au proxy. ', NewConnectionError (': impossible d'établir une nouvelle connexion : [Errno 61] Connexion refusée ',))': /simple/Django/ Nouvelle tentative (nouvelle tentative (total = 2, connexion = aucune, lecture = aucune, redirection = aucune, statut = aucune)) après la rupture de la connexion par 'ProxyError (' Connexion impossible au proxy. ', NewConnectionError (': impossible d'établir une nouvelle connexion : [Errno 61] Connexion refusée ',))': /simple/Django/ Nouvelle tentative (nouvelle tentative (total = 1, connexion = aucune, lecture = aucune, redirection = aucune, statut = aucune)) après la rupture de la connexion par 'ProxyError (' Connexion impossible au proxy. ', NewConnectionError (': impossible d'établir une nouvelle connexion : [Errno 61] Connexion refusée ',))': /simple/Django/ Nouvelle tentative (nouvelle tentative (total = 0, connexion = aucune, lecture = aucune, redirection = aucune, statut = aucune)) après la rupture de la connexion par 'ProxyError (' Connexion impossible au proxy. ', NewConnectionError (': impossible d'établir une nouvelle connexion : [Errno 61] Connexion refusée ',))': /simple/Django/ Impossible de trouver une version qui réponde à l'exigence Django == 2.0.7 (à partir des versions:) Aucune distribution correspondante trouvée pour Django == 2.0.7.
J'ai aussi: Pip- 10.0.1 Virtualenv- 16.0.0
Ça me tue. Je crois que cela a quelque chose à voir avec pip. Je suis un débutant alors parcourez-moi. Merci!
La version 2 de Django ne supporte que python3, alors essayez
pip3 install Django==2.0.7
si vous avez python3.5 et plus dans votre système
Également pour voir les versions prises en charge par pip, essayez:
pip install Django==0
et
pip3 install Django==0