Skip to content Skip to sidebar Skip to footer

Python Install Package Getting Error With Msvccompiler

I have already install python(x,y)2.7.6.1 in Windows7 64bit and try to install a package 'imreg' (from here) python setup.py install I am getting this error: no module named msv

Solution 1:

I solved this question by this way:

MinGW with C++ Compiler installed.

in " C:\Python27\Lib\distutils" create a file "distutils.cfg" and add these lines:

[build]

compiler=mingw32

the answer is from How to use MinGW's gcc compiler when installing Python package using Pip?

Post a Comment for "Python Install Package Getting Error With Msvccompiler"