1

I am working with python 2.7.3 and I am trying to install Python Kerberos. But it is giving me the following error:

error: Unable to find vcvarsall.bat

The entire traceback is as follows:

setup.py install
running install
running build
running build_ext
building 'kerberos' extension
error: Unable to find vcvarsall.bat

I want to know if there is any way of resolving the error without installing Visual Studio. It would be great if someone will be able to help resolve these errors.

1 Answers1

1

You need to install Visual Studio (2008), Python is looking for a compiler you don't have.

See this question: error: Unable to find vcvarsall.bat


Note: If you were curious, vcvarsall.bat is a shell script that updates your environment to let you compile with Visual Studio.

Community
  • 1
  • 1
Thomas Orozco
  • 53,284
  • 11
  • 113
  • 116