python安装whl文件以及可能出现的问题

1.首先使用pip安装wheel库

(venv) D:\1\venv>pip install wheel
Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
Collecting wheel
  Downloading http://mirrors.aliyun.com/pypi/packages/8c/23/848298cccf8e40f5bbb59009b32848a4c38f4e7f3364297ab3c3e2e2cd14/wheel-0.34.2-py2.py3-none-any.whl
Installing collected packages: wheel
Successfully installed wheel-0.34.2

2.将想要安装的whl文件放到指定目录下,也就是当前shell或者cmd显示的位置下。

3.安装可能会出现如下的问题

(venv) D:\1\venv>pip install Fiona-1.8.13-cp38-none-win32.whl
Fiona-1.8.13-cp38-none-win32.whl is not a supported wheel on this platform.

出现这个问题的原因是因为我是3.7版本 而cp38意思明显是3.8版本,网上有说让自己手改的(手改成符合版本的文件),个人觉得还是下载符合版本的whl文件比较好,然后重新下载对应版本的文件安装成功

4.重新去官网下新的符合版本的文件后解决

(venv) D:\1\venv>pip install GDAL-3.0.4-cp37-cp37m-win_amd64.whl
Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
Processing d:\biancheng_heji\git_hub\coronavirus-epidemic-2019-ncov\coronavirus-epidemic-2019-ncov-master\venv\gdal-3.0.4-cp37-cp37m-win_amd64.whl
Installing collected packages: GDAL
Successfully installed GDAL-3.0.4

你可能感兴趣的:(python安装whl文件以及可能出现的问题)