使用了清华大学的源。
https://pypi.tuna.tsinghua.edu.cn/simple
安装命令换成如下方式:
pip install https://pypi.tuna.tsinghua.edu.cn/simple pymysql
这样,就出现了开始的问题。Cannot unpack file xxx、
最终的解决方案
最终,我使用如下命令,成功安装。
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn pymysql
安装成功!
网友评论