pip 安装时 fatal error C1083 无法打开包括文件 “io.h” No such file or directory
报错
使用 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 2Command "C:\Users\Anaconda3\python.exe -u -c "import setuptools, tokenize;file='C:\Users\AppData\Local\Temp\pip-build-4u1qzucg\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 inC:\Users\AppData\Local\Temp\pip-build-4u1qzucg\lmdb\
原因:无法找到 io.h 文件。
解决办法
首先安装 Windows 10 SDK
SDK 下载地址:https://developer.microsoft.com/zh-cn/windows/downloads/windows-10-sdk
默认安装即可。
然后配置路径:右键我的电脑——属性——高级系统设置——环境变量——系统变量(s),在 PATH 中添加:
即可解决该问题。
学习更多编程知识,请关注我的公众号:
版权声明: 本文为 InfoQ 作者【代码的路】的原创文章。
原文链接:【http://xie.infoq.cn/article/506542dabcfeda1a814712559】。文章转载请联系作者。
评论