美文网首页
使用pip安装包时,出现Cannot unpack file x

使用pip安装包时,出现Cannot unpack file x

作者: 一如既往wfqwfq | 来源:发表于2020-05-11 14:30 被阅读0次

    使用了清华大学的源。
    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

    安装成功!

    相关文章

      网友评论

          本文标题:使用pip安装包时,出现Cannot unpack file x

          本文链接:https://www.haomeiwen.com/subject/oreunhtx.html