Install mysql-python on Windows

2

What steps should I follow to correctly install mysql-python on my Windows operating system?

    
asked by Gerardo93 11.02.2016 в 21:49
source

1 answer

1

To install mysql-python on Windows:

First, you must have wheel installed, this can be achieved in the following way:

pip install wheel

Then in the directory where MySQL-python-1.2.5.zip is unzipped, copy the files .whl and then do it in the console and located in the decompression directory:

for the 32-bit Windows version :

pip install MySQL_python-1.2.5-cp27-none-win32.whl

for the 64-bit Windows version :

pip install MySQL_python-1.2.5-cp27-none-win_amd64.whl

P.D. For those who mark error and have already installed the compiler of c ++ for python 2.7, in this link you can download it again.

link

    
answered by 05.09.2017 в 23:49