web-dev-qa-db-ja.com

エラー:PEP 517を使用し、直接インストールできない暗号化用のホイールを構築できませんでした

Pipが暗号化パッケージのホイールをビルドすると、エラーが発生します。

エラー:

Error

LINK : fatal error LNK1181: cannot open input file 'libssl.lib'
  error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Tools\\MSVC\\14.16.27023\\bin\\HostX86\\x86\\link.exe' failed with exit status 1181
  ----------------------------------------
  ERROR: Failed building wheel for cryptography
  Running setup.py clean for cryptography
Failed to build cryptography
ERROR: Could not build wheels for cryptography which use PEP 517 and cannot be installed directly

OpenSSLを既にインストールし、環境変数を この投稿 で提案されているように設定していますが、問題は解決しません。私のセットアップの詳細:

  • システム-Windows 10
  • Python-3.8
  • ピップ-19.3.1
3
Chirag Bhansali

Windows 10でPython 3.8.1を使用してScrapyをインストールしようとしたときにこのエラーが発生しましたが、pipの最後のバージョン(私の場合は19.3.1)をインストールすると解決しました。仕方:

python -m pip install scrapy --user
0
Camilo Caquimbo