pip之python库安装

以scikit-image库安装为例:
1、到官网下载包,里面涵盖所有pip包

2、查找scikit-image库位置,点击下载
我们下载 
  • scikit_image‑0.13.0‑cp35‑cp35m‑win_amd64.whl

3、 安装时会出现一下错误
scikit_image-0.13.0- cp34 -none-win_amd64.whl is not a supported wheel on this platform.
你可以改下文件名字,根据你的python版本更改
我的改名如下 我的Python版本是3.5的
scikit_image-0.13.0 -cp35 -none-win_amd64
安装命令如下
4、到dos窗口下
pip install d:\downloads\scikit_image-0.13.0 -cp35 -none-win_amd64.whl
即可安装成功!

猜你喜欢

转载自blog.csdn.net/jingbo18/article/details/78535778
今日推荐