我已经安装了MSVC++ 2010 Express,并且我的vcvarsall.bat文件位于C:\Program Files\Microsoft Visual Studio 10.0\VC
中,该文件位于系统PATH中。当我运行easy_install
时,找不到vcvarsall.bat。
我需要在distutils.cfg文件中进行设置以将其指向MSVC++安装吗?
G:\>easy_install hg-git
install_dir C:\Python26\Lib\site-packages\
Searching for hg-git
Best match: hg-git 0.2.6
Processing hg_git-0.2.6-py2.6.egg
hg-git 0.2.6 is already the active version in easy-install.pth
Using c:\python26\lib\site-packages\hg_git-0.2.6-py2.6.egg
Processing dependencies for hg-git
Searching for dulwich>=0.6.0
Reading http://pypi.python.org/simple/dulwich/
Reading http://samba.org/~jelmer/dulwich
Reading http://launchpad.net/dulwich
Best match: dulwich 0.7.1
Downloading http://www.samba.org/~jelmer/dulwich/dulwich-0.7.1.tar.gz
Processing dulwich-0.7.1.tar.gz
Running dulwich-0.7.1\setup.py -q bdist_egg --dist-dir c:\docume~1\mlin\locals~1
\temp\easy_install-fhraep\dulwich-0.7.1\egg-dist-tmp-qozily
error: Setup script exited with error: Unable to find vcvarsall.bat
最佳答案
好吧,正如martineau所写的那样,您必须安装Visual Studio 2008或Visual C++ Express。话虽如此,我了解您想知道Python在哪里查找此批处理文件。您可以通过在distutils/msvc9compiler.py标准模块中查看definition
函数的 find_vcvarsall
来看到此信息。 Python依次检查是否在注册表项下保存在注册表中的任何文件夹
HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\VisualStudio\9.0\Setup\VC\ProductDir
HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\VCExpress\9.0\Setup\VC\ProductDir
(对于64位Windows)或
HKEY_LOCAL_MACHINE\Software\Microsoft\VisualStudio\9.0\Setup\VC\ProductDir
HKEY_LOCAL_MACHINE\Software\Microsoft\VCExpress\9.0\Setup\VC\ProductDir
(对于32位Windows)存在,并且如果存在,它将这样的文件夹视为包含
vcvarsall.bat
文件的文件夹。如果这些文件夹都不存在,Python将检查是否存在环境变量VS90COMNTOOLS
。如果此变量退出,Python会将高于此变量值两级的文件夹视为包含vcvarsall.bat
文件的文件夹。另请参阅我的other答案,它解释了为什么无法使用MSVC++ 2010来构建Python 2.6的扩展的原因
编辑:
VC++ 2008文件现在打包在MS的安装程序中,可以从here下载。安装后,vcvarsall.bat将在
C:\Users\username\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0
中关于python - 如何将easy_install指向vcvarsall.bat?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6551724/