Error trying to install yowsup: Unable to find vcvarsall.bat

2

I'm trying to install an application that registers mobile phones in WhatsApp . I tried using the command below:

python setup.py install

And the following error occurs:

  

error: Setup script exited with error: Microsoft Visual C ++ 10.0 is required (Unable to find vcvarsall.bat).

Does anyone know why this error happens? Thanks in advance for the answers.

    
asked by anonymous 03.05.2015 / 06:38

1 answer

3

If Visual Studio is already installed, make sure it is accessible from the command line.

Open a terminal and type:

vcvarsall.bat

If the command message is not found, look on your computer for this file and add the directory in the system variable PATH .

I have a post on how to install Python in Windows and configure a compiler, it might help: link

a>

    
05.05.2015 / 03:26