如何从MacOS卸载QGIS


13

许多人可能知道,用于QGIS的MacOS安装程序不如Windows版本的交钥匙。您必须基本安装3-4套软件包,其中只有一组最终位于Mac apps目录(例如GDAL)中。如果要完全卸载QGIS,该如何卸载GDAL等软件包?

Answers:


3

删除基本上也是一个“手动”过程。
假设您已经安装了, 如果仍然有,请导航到,您将在其中找到一个 (如果没有,请重新下载它,如果您想获得有关QGis版本的具体说明)将找到卸载说明:QGIS3.2
.dmgGDAL Complete ExtrasReadMe.rtf
.dmg

Uninstall

Drag GDAL.framework, GEOS.framework, PROJ.framework, SQLite3.framework and UnixImageIO.framework from /Library/Frameworks to the Trash.  
Also trash /Library/Application Support/GDAL and ~/Library/Application Support/GDAL (if it exists).

Run these commands in a Terminal:

sudo pkgutil --forget org.gdal.gdal22-framework-yosemite
sudo pkgutil --forget net.refractions.geos-framework-yosemite
sudo pkgutil --forget org.maptools.proj-framework-yosemite
sudo pkgutil --forget org.sqlite.sqlite3-framework-yosemite
sudo pkgutil --forget com.kyngchaos.UnixImageIO-framework-F-yosemite

Python

Use pip to uninstall the python components:

sudo pip3 uninstall gdal
sudo pip3 uninstall proj
sudo pip3 uninstall shapely

注意:提供的这些说明是从文档中复制的。如果您不确定或不熟悉从终端执行命令,我建议您从有经验的人那里获得帮助。

从那里开始,对于所有非应用商店应用程序都一样,从库中删除QGis,在库中搜索与QGis相关的任何其他目录/文件,然后将其移至回收站。
最后清除垃圾

链接到How To指南

编辑: 对于QGis 2.18,卸载说明分散在不同的.rtf文件中,每个文件都与特定的应用程序相关。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.