致命错误 C1083:无法打开包含文件:“openssl/opensslv.h"

Fatal error C1083: Cannot open include file: #39;openssl/opensslv.h#39;(致命错误 C1083:无法打开包含文件:“openssl/opensslv.h)
本文介绍了致命错误 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"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python count duplicate in list(python在列表中计数重复)
drop_duplicates not working in pandas?(drop_duplicates 在 pandas 中不起作用?)
Get unique items from list of lists?(从列表列表中获取唯一项目?)
How to install python package with a different name using PIP(如何使用 PIP 安装具有不同名称的 python 包)
How to quot;select distinctquot; across multiple data frame columns in pandas?(如何“选择不同的?跨越 pandas 中的多个数据框列?)
Intersection of two lists, keeping duplicates in the first list(两个列表的交集,在第一个列表中保留重复项)