当我们尝试用:
1 pip install mysql-python #并不是MySQLdb
企图安装mysql时,我们会发现一开始进行的很顺利,但最后就会提示:
1 error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). 2 Get it from http://aka.ms/vcpython27
因此我们根据上面提供的网址下载VCforPython27
安装即可。
安装驱动
当我们尝试再次运行pip install mysql-python的命令时,我们发现又出错了:
1 No such file or directory 2 error: command '"C:\Users\xxx\AppData\Local\Programs\Common\Microsoft\Visua 3 l C++ for Python\9.0\VC\Bin\amd64\cl.exe"' failed with exit status 2
我们需要下载驱动:
MySQL-python-1.2.3.win-amd64-py2.7.exe (1.0 MiB)
(http://www.codegood.com/download/11/)
安装成功!!!!
之前百度了 好久都没有成功,原来是照的驱动的问题,找到可以直接拿来用的.exe文件实在是不容易啊~~~