我已经在Windows7 64bit
中安装了python(x,y)2.7.6.1并尝试安装软件包" imreg" (来自here)
python setup.py install
我收到此错误:
在numpy.distutils中没有名为msvccompiler的模块尝试从distutils自定义msvccompiler
我已安装Visual Studio 2008和Microsoft Visual C ++编译器for Python 2.7(来自here)
但我不知道如何解决这个问题
答案 0 :(得分:2)
我通过这种方式解决了这个问题:
安装了C ++编译器的MinGW。
在“C:\ Python27 \ Lib \ distutils”中创建一个文件“distutils.cfg”并添加以下行:
[构建]
编译器的mingw32 =
答案来自How to use MinGW's gcc compiler when installing Python package using Pip?