Fatal error C1083: Cannot open include file: #39;openssl/opensslv.h#39;(致命错误 C1083:无法打开包含文件:“openssl/opensslv.h)
问题描述
我正在尝试安装 Scrapy,但在安装过程中出现此错误:build emp.win-amd64-2.7Release_openssl.c(429):致命错误 C1083:无法打开包含文件:'openssl/opensslv.h': 没有这样的文件或目录
I'm trying to install Scrapy, but got this error during installing: build emp.win-amd64-2.7Release_openssl.c(429) : fatal error C1083: Cannot open include file: 'openssl/opensslv.h': No such file or directory
我已检查文件opensslv.h"是否在此处C:OpenSSL-Win64includeopenssl".而且我还在路径系统变量中包含了这个C:OpenSSL-Win64include".
I've checked that the file "opensslv.h" is in here "C:OpenSSL-Win64includeopenssl". And I've also included this "C:OpenSSL-Win64include" in the Path, system variables.
坚持了几个小时,有人可以帮忙吗?谢谢.
Stuck on this for hours, can someone please help out? Thanks.
cryptography-1.5.2"包也发现了同样的问题
The same issue was found for the "cryptography-1.5.2" package
推荐答案
设置这两个环境值为我修复了它,之后 pip install cryptography
工作:
Setting these two environment values fixed it for me, after which pip install cryptography
worked:
set LIB=C:OpenSSL-win64lib;%LIB%
set INCLUDE=C:OpenSSL-win64include;%INCLUDE%
请参阅此处了解更多信息
这篇关于致命错误 C1083:无法打开包含文件:“openssl/opensslv.h"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:致命错误 C1083:无法打开包含文件:“openssl/openss


基础教程推荐
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 包装空间模型 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01