web-dev-qa-db-ja.com

Windows 7でpipを使用してpywin32をインストールすると、python 3.4.2では機能しません。

Hy @ everybody、

windows 7でpython 3.4.2を使用してpip(1.5.6)経由でpywin32をインストールしようとしましたが、次のエラーメッセージが常に表示されます。

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

Pipを使用する他のすべてのインストールは、まったく問題なく動作します。 pypi.orgにはpywin32のパッケージがあるので、なぜこれが起こっているのか本当に理解していません。

私はこれも--allow-externalフラグを試しましたが、次のエラーが発生しました

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

次に--allow-unverifiedフラグを使用し、このエラーが発生しました

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

3.4のpywin32のpipにパッケージはありますか? pypi-link

誰もが同じ問題/行動を持っていますか?

編集

ピップ経由でpywin32をインストールする方法を探している人のために。 pywin32の代わりにパッケージpypiwin32を使用します。これは同じパッケージですが、pip可能です

ご挨拶
トンカ

22
tonka

最初の質問への回答では、python 3.4。のpip pywin32パッケージがないようです。このページを見てみると、url https:// pypi。 python.org/simple/pywin32 /214_download_url。これは、バージョン214が最新であり、214ダウンロードディレクトリ here にpython 3.1。

2番目の質問への回答では、はい、python 3.4.1で同じ問題/動作が見られます。コメントの@ sk11で言及されているように、インストーラは ここに (担当者がいないためコメントを追加できません。)インストーラーを試したところ、問題なく動作するようです。

6
Captain Whippet