Python安装python包时遇到"error: Microsoft Visual C++ 9.0 is required"的简答
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python安装python包时遇到"error: Microsoft Visual C++ 9.0 is required"的简答相关的知识,希望对你有一定的参考价值。
简答
在Windows下用pip安装Scrapy报如下错误,
error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). Get it from http://aka.ms/vcpython27
打开http://aka.ms/vcpython27会跳转到http://www.microsoft.com/en-us/download/confirmation.aspx?id=44266
将安装包(VCForPython27.msi, 83Mb)下载回来安装即可解决问题
Microsoft Visual C++ Compiler for Python 2.7
更合理的解决办法:
Python通过pip或者源码来安装某些模块时,这些模块包含有c/c++源码,安装过程会调用本地的编译器编译这些代码。在Windows平台下我安装时候的错误消息是“error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). Get it from http://aka.ms/vcpython27” 可以看出错误是由于没有找到该vc版本,对应的是vs2008,当然一种解决方法是安装该版本,但我已经安装了vs2015,所以我就需要修改下默认的这种配置。
解决方案
方法一:
-
首先确定自己安装vs的版本号,可以通过查看注册表,在HKLM\Software\Wow6432Node\Microsoft\VisualStudio\下,如图
会有多个数字卡头的子项,只有安装的会有对应的InstallDir项,可以看出我安装的vs版本是14.0;
-
打开 “python安装目录/Lib/distutilsmsvc9compiler.py”文件,找到find_vcvarsall函数,在该函数开头添加
version =上面的版本号, 即添加内容为 “VERSION = 14.0”, 这样就可以使用了
def find_vcvarsall(version):
"""Find the vcvarsall.bat file
At first it tries to find the productdir of VS 2008 in the registry. If
that fails it falls back to the VS90COMNTOOLS env var.
"""
version = 14.0 ##添加这行
vsbase = VS_BASE % version
... ...
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
方法二:
这种方法更简单,在环境变量中添加项 VS90COMNTOOLS ,值为 “VS安装路径\Common7\Tools”, 如图
重新打开命令行程序就可以使用了。
以上是关于Python安装python包时遇到"error: Microsoft Visual C++ 9.0 is required"的简答的主要内容,如果未能解决你的问题,请参考以下文章
Python 3:ImportError“没有名为 Setuptools 的模块”
记录初次使用 Python 的 Poetry 库遇到的一个坑(安装第三方包时卡住)