Pip install Mysql for Pynthon in windows 10 64 bits gives me SKD error 7.1

0

On a 64-bit Windows 10 Notebook, with Python 3.3 installed. When I want to install Mysql through Pip in Python I get the following error:

  

error: Microsoft Visual C ++ 10.0 is required. Get it with "Microsoft Windows SDK 7.1": www.microsoft.com/download/details.aspx?id=8279

Install Microsoft Windows SKD 7.1 according to the selected path and I still get the same error.

Do I have any other way to download the Mysql modules ???

    
asked by Martin Eduardo Laspiur 04.12.2016 в 16:54
source

1 answer

1

You can install an already compiled version (wheels). link

There is an unofficial repository very useful for these cases: link

You only need to download the one corresponding to your system, *‑cp33‑cp33m‑win_amd64.whl in your case, and install it with pip:

pip install [ruta]\[fichero].whl

Depending on the configuration of the system, you may need to do it as an administrator.

    
answered by 07.12.2016 / 18:49
source