关于python:pip安装时fatal-error-C1083-无法打开包括文件ioh-No-such-file-or-directory

57次阅读

共计 882 个字符,预计需要花费 3 分钟才能阅读完成。

原文链接

报错

应用 pip 装置模块,呈现谬误:

c:\users\anaconda3\include\pyconfig.h(68): fatal error C1083: 无奈关上包含文件:“io.h”: No such file or directory

error: command ‘C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\x86_amd64\cl.exe’ failed with exit status 2
Command “C:\Users\Anaconda3\python.exe -u -c “import setuptools, tokenize;__file__=’C:\Users\AppData\Local\Temp\pip-build-4u1qzu
cg\lmdb\setup.py’;exec(compile(getattr(tokenize, ‘open’, open)(__file__).read().replace(‘\r\n’, ‘\n’), __file__, ‘exec’))” install –record C:
\Users\AppData\Local\Temp\pip-bcivjbyw-record\install-record.txt –single-version-externally-managed –compile” failed with error code 1 in
C:\Users\AppData\Local\Temp\pip-build-4u1qzucg\lmdb\

起因:无奈找到 io.h 文件。

解决办法

首先装置 Windows 10 SDK

SDK 下载地址:https://developer.microsoft.c…

默认装置即可。

而后配置门路:右键我的电脑——属性——高级零碎设置——环境变量——零碎变量(s),在 PATH 中增加:

C:\Program Files (x86)\Windows Kits\10\Include\<version>\ucrt

即可解决该问题。

 
 

学习更多编程常识,请关注我的公众号:

代码的路

正文完
 0