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

Asked

Viewed 236 times

2

I’m trying to install an application that performs cell phone registration on Whatsapp. I tried to use 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 mistake happens? Thanks in advance for the answers.

  • Microsoft Visual C++ 10.0 is required, already tried to install it?

  • already installed I have sql server and visual studio , and I have checked that is already installed the visual c++ 10.0 do not know the reason for the error yet

  • If Visual Studio is already installed, make sure it is accessible by command line. Open a terminal and type "vcvarsall.bat". If the command message is not found, search your computer for this file and add the directory to the PATH system variable. Abs!

  • OK @Fernandomacedo I will try to do that. Thank you

  • @Jacobdeoliveira I have a post on how to install Python on Windows and configure a compiler, it might help: http://fernandomacedo.com/programacao/instalando-python-no-windows/

  • okay I’ll check the site thanks @Fernandomacedo!

  • worked @Fernandomacedo put vcvarsall.bat on the path and worked thank you very much :)

  • @Jacobdeoliveira I can put as answer you mark as the right answer?

  • can yes Thank u

Show 4 more comments

1 answer

3


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

Open a terminal and type:

vcvarsall.bat

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

I have a post on how to install Python on Windows and set up a compiler, it might help: http://fernandomacedo.com/programacao/instalando-python-no-windows

Browser other questions tagged

You are not signed in. Login or sign up in order to post.