查看python的安装版本
#在python控制台输入如下内容
>>>import sys; print('Python %s on %s' % (sys.version, sys.platform))
返回:Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 22:45:29) [MSC v.1916 32 bit (Intel)] on win32
去下载whl的MySQLclient安装包
在terminal面板通过pip安装
pip install C:\Users\rick\Downloads\mysqlclien
t-1.4.6-cp38-cp38-win32.whl
出错啦
C:\Users\rick\AppData\Local\Programs\Python\Python38-32\Lib\site-packages\Django-2.1.15-py3.8.egg\django\HelloWorld>pip install C:\Users\rick\Downloads\mysqlclien
t-1.4.6-cp38-cp38-win32.whl
mysqlclient-1.4.6-cp38-cp38-win32.whl is not a supported wheel on this platform.
在网上查了n多方法不行呀
看偏方
在控制台输入:
import pip._internal; print(pip._internal.pep425tags.get_supported())
返回:[('cp38', 'cp38m', 'win32'), ('cp38', 'none', 'win32'), ('py3', 'none', 'win32'), ('cp38', 'none', 'any'), ('cp3', 'none', 'any'), ('py38', 'none', 'any'), ('py3', 'none', 'any'), ('py37', 'none', 'any'), ('py36', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
通过第返回(‘cp38’, ‘cp38m’, ‘win32’),将下载的文件mysqlclient‑1.4.6‑cp38‑cp38‑win32.whl的文件名修改为mysqlclient-1.4.6-cp38-cp38m-win32.whl
再次安装pip install C:\Users\rick\Downloads\mysqlclien
t-1.4.6-cp38-cp38m-win32.whl
成功安装完美解决
pip的下载模块过慢,使用国内镜像可以大幅度提升下载速度:
如:
豆瓣:https://pypi.douban.com/simple/
阿里云:https://mirrors.aliyun.com/pypi/simple/
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
pip install "模块名称" -i "镜像"
1
pip install django-haystack -i http://pypi.douban.com/simple --trusted-host pypi.douban.com