一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

Python如何安装whl文件 Python安装whl文件过程图解

时间:2020-02-18 编辑:袖梨 来源:一聚教程网

本篇文章小编给大家分享一下Python安装whl文件过程图解,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。

在命令指示符下(cmd)的Python3安装命令为:

pip3 install 文件名.whl

安装出错:

matplotlib-2.0.0-cp34-cp34m-win_amd64.whl is not a supported wheel on this platform.

原来是万能仓库的包名除了问题,将包的名字改一下就好:

matplotlib-2.0.0-cp34-cp34m-win_amd64.whl 改成 matplotlib-2.0.0-cp34-none-win_amd64.whl

完美安装:

热门栏目