Can't install mysql-python version 1.2.5 in Windows, mysql-python1.2.5
Can't install mysql-python version 1.2.5 in Windows http://stackoverflow.com/questions/37092125/cant-install-mysql-python-version-1-2-5-in-windows Up vote0down votefavorite
I havemysql-python
V1.2.4 installed just fine on my machine (Windows 8). I am using Python 2.7. I always got this below error every time I try to upgrade to v1.2.5.
C:\Users\User\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\
9.0\VC\Bin\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Dversion_info=(1,2,5,'fi nal',1) -D__version__=1.2.5 "-IC:\Program Files (x86)\MySQL\MySQL Connector C 6. 0.2\include" -Ic:\python27\include -Ic:\python27\PC /Tc_mysql.c /Fobuild\temp.wi n32-2.7\Release_mysql.obj /Zl _mysql.c _mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or directory error: command 'C:\Users\User\AppData\Local\Programs\Common\Microsoft \Visual C++ for Python\9.0\VC\Bin\cl.exe' failed with exit status 2
---------------------------------------- Rolling back uninstall of mysql-python Command "c:\python27\python.exe -u -c "import
setuptools, tokenize;file='c:\ \users\user\appdata\local\temp\pip-build-utz7of\MySQL-python\setup.py';ex ec(compile(getattr(tokenize, 'open', open)(file).read().replace('\r\n', '\n' ), file, 'exec'))" install --record c:\users\user\appdata\local\temp\pip-osy _cg-record\install-record.txt --single-version-externally-managed --compile" fai led with error code 1 in c:\users\user\appdata\local\temp\pip-build-utz7of\MySQL -python\
I 've tried (and none work ):
Do I miss something? Thanks.
Python mysql python-2.7 mysql-python-module
Share | improve this question |
Edited May 14 at 17:57 Magnus Lind Oxlund 54212 |
Asked May 7 at Aminah Nuraini |
|
I don't understand why do I get a down vote. it is similar to some questions, but I'm 've tried their solution and none work. please explain the down vote reason if you want to act that way-Aminah Nuraini May 9 |
|
What happened when you used the exe installer? -Burhan Khalid May 9 |
|
It got installed just fine, but then I still fail to installmysql-python -Aminah Nuraini May 9 at 4: 49 |
|
How do you know it failed? Did you try to import it and get an error? -Burhan Khalid May 9 |
|
I keep getting the error I 've pasted in the question. Can't find the config-win.h, etc.-Aminah Nuraini May 9 |
| Show
1More comment1 Answer 1 active oldest votes
Up vote0down voteaccepted |
I solved it myself. I use the wheel installer from http://www.lfd.uci.edu /~ Gohlke/pythonlibs/# mysql-python. There are two wheel packages there.amd64 One refuses to install on my platform (Windows) but the other one works just fine. I mean the file with this name: MySQL_python-1.2.5-cp27-none-win32.whl
Then install it by running this below command in the same folder with the wheel package. pip install MySQL_python-1.2.5-cp27-none-win32.whl
Share | improve this answer |
|