web-dev-qa-db-fra.com

Installer pywin32 avec pip dans Windows 7 ne fonctionne pas dans python 3.4.2

Hy @ tout le monde,

j'ai essayé d'installer pywin32 via pip (1.5.6) avec python 3.4.2 sous Windows 7, mais j'ai toujours le message d'erreur suivant:

Could not find any downloads that satisfy the requirement pywin32
Some externally hosted files were ignored (use --allow-external pywin32 to all
ow).
Cleaning up...
No distributions at all found for pywin32
Storing debug log for failure in C:\Users\tonka\pip\pip.log

Toutes les autres installations avec pip fonctionnent parfaitement. Sur pypi.org, il y a un paquet pour pywin32, alors ne comprenez pas vraiment pourquoi cela se produit.

J'ai également essayé ce drapeau --allow-external, mais j'ai ensuite l'erreur suivante

Could not find any downloads that satisfy the requirement pywin32
Some insecure and unverifiable files were ignored (use --allow-unverified pywi
n32 to allow).
Cleaning up...
No distributions at all found for pywin32
Storing debug log for failure in C:\Users\tonka\pip\pip.log

Ensuite, j'ai utilisé le drapeau --allow-unverified et j'ai cette erreur

Could not find any downloads that satisfy the requirement pywin32
Cleaning up...
No distributions at all found for pywin32
Storing debug log for failure in C:\Users\tonka\pip\pip.log

Existe-t-il un package dans pip pour pywin32 pour 3.4? pypi-link

Quelqu'un a-t-il le même problème/comportement?

Modifier :

Pour tous ceux qui recherchent un moyen d'installer pywin32 via pip. Utilisez le package pypiwin32 au lieu de pywin32, c'est le même package, mais il est pip-able

Salutations
Tonka

22
tonka

En réponse à votre première question, il semble qu'il n'y ait pas de package pip pywin32 pour python 3.4. Si vous regardez cette page: url https: // pypi. python.org/simple/pywin32/ , vous pouvez voir qu'il existe un 214_download_url. Cela indique que la version 214 est la dernière disponible et que le répertoire de téléchargement 214 ici ne contient pas de programme d'installation pour une version ultérieure à python 3.1.

En réponse à votre deuxième question, oui, je vois le même problème/comportement avec python 3.4.1. Comme mentionné par @ sk11 dans un commentaire, vous pouvez télécharger un programme d'installation depuis ici . (Je ne peux pas ajouter de commentaire car je n'ai pas de représentant.) Je viens d'essayer le programme d'installation et il semble bien fonctionner.

6
Captain Whippet