第二次安装mysql-python有问题
来源:4-4 新建项目
慕婉清9154519
2019-04-13
我安装mysql-python时使用了那个.whl包,但是显示Could not find a version that satisfies the requirement MySQL_python-1.2.5-cp27-none-win_amd64 (from versions: ) No matching distribution found for MySQL_python-1.2.5-cp27-none-win_amd64。我又尝试安装MySQLclient,也报错:Command “c:\users\hasee\envs\mxonline\scripts\python.exe -u -c “import setuptools, tokenize;file=‘c:\users\hasee\appdata\local\temp\pip-install-njoqtm\mysqlclient\setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(’\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record c:\users\hasee\appdata\local\temp\pip-record-vgsu03\install-record.txt --single-version-externally-managed --compile --install-headers c:\users\hasee\envs\mxonline\include\site\python2.7\mysqlclient” failed with error code 1 in c:\users\hasee\appdata\local\temp\pip-install-njoqtm\mysqlclient\。
这是我新建的virtualenv,之前的.whl包可以安装,现在不知道怎么回事,希望有人能解答一下。
2回答
-
实在安装不了的话 可以安装pymysql 参考链接 https://blog.csdn.net/wan271920545/article/details/84567565 不过最好能截图下 最终的报错 这一堆 很难看清楚到底是哪个问题
012019-04-15 -
bobby
2019-04-14
这里报错一般都是因为下载的mysqlclient版本和python的版本不一致造成的,你要确定你下载的mysqlclient和你的python版本保持一致,包括是不是64位版本的,记得这里的64位指的是python版本不是操作系统的版本
022019-04-16
相似问题