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

pip3 install 文件名.whl

python安装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​

完美安装:

python安装whl文件_包名_02

python安装whl文件_python_03