美文网首页
Python ERROR: Cannot unpack file

Python ERROR: Cannot unpack file

作者: Rinaloving | 来源:发表于2024-01-20 20:42 被阅读0次

    问题

    • Python 安装库报错(我这里是安装 PySide6报错)


      image.png

    解决

    • 更换国内源
    pip install numpy -i https://pypi.mirrors.ustc.edu.cn/simple/
    
    
    image.png
    • 执行之前的命令安装PySide6,还是报原来的错误,换成下面写法
    pip install  -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn PySide6
    
    image.png
    • 以上面的方式我们安装 PyQt6
     pip install  -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn PyQt6  
    
    image.png

    国内常见源

    相关文章

      网友评论

          本文标题:Python ERROR: Cannot unpack file

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