运行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和更改环境变量为我解决了这个问题。
Win32OpenSSL-1_1_0f
,即使你的系统是64位(我尝试安装64位版本的OpenSSL,但是这并没有解决问题) C:\OpenSSL-Win32\include
, C:\OpenSSL-Win32\lib
> set INCLUDE=C:\OpenSSL-Win32\include;%INCLUDE%
> set LIB=C:\OpenSSL-Win32\lib;%LIB%
> pip install cryptography