赞
踩
1.安装步骤
(1)打开OSGeo4W shell (和QGIS在一个文件夹下)
(2)输入:py3_env
,显示QGIS Python安装的路径。
(3)安装library :python -m pip install {your library}
如安装rasterio模块:python -m pip install rasterio
报错:
主要问题: Getting requirements to build wheel ... error
解决方法:To install with pip we just need to download the wheel files for gdal and rasterio and use them for the install.
下载wheel文件,然后再安装。(参考:https://opensourceoptions.com/blog/install-rasterio-for-windows-with-pip-or-conda/)
下载文件的网站:https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml
安装包命名规则:
安装包命名规则,以 GDAL‑3.4.1‑cp310‑cp310‑win_amd64.whl 为例:
- 3.4.1:GDAL的版本号,数字越大表示版本越新
- cp310:3.10 版本的 Python 实现
- win_amd64:64 位操作系统,对应 win32 为 32 位操作系统
下载文件,利用命令行cd/索引到文件所在位置,然后进行安装:
pip install GDAL-3.3.3-cp37-cp37m-win_amd64.whl
注意:先要安装GDAL,再安装raterio,注意顺序,否则会报错!
参考资料:Installing Python packages in QGIS 3 (for Windows)
raterio学习资料:https://www.giserdqy.com/arcgis/arcpy/32935/
GDAL介绍:https://docs.qgis.org/2.18/en/docs/user_manual/plugins/plugins_gdaltools.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。