the*_*ire 3 python windows pip
我在运行时遇到以下错误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
我正在运行Windows 10,64位,使用python 2.7.我正在尝试安装加密1.9.
the*_*ire 11
安装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