PIP在Windows中安装密码

运行pip install cryptography时出现以下错误:

build\temp.win32-2.7\Release\_openssl.c(434) : fatal error C1083: Cannot open include file: 'openssl/opensslv.h': No such file or directory

我用python 2.7运行Windows 10,64位。 我正在尝试安装密码学1.9。

安装openssl和更改环境变量为我解决了这个问题。

  • 从这里使用安装程序安装OpenSSL: https : //slproweb.com/products/Win32OpenSSL.html
  • 使用Win32OpenSSL-1_1_0f ,即使你的系统是64位(我尝试安装64位版本的OpenSSL,但是这并没有解决问题)
  • 现在应该存在以下两个文件夹: C:\OpenSSL-Win32\includeC:\OpenSSL-Win32\lib
  • 打开一个cmd行终端并运行以下命令:
  • > set INCLUDE=C:\OpenSSL-Win32\include;%INCLUDE%
  • > set LIB=C:\OpenSSL-Win32\lib;%LIB%
  • > pip install cryptography