How To Install qgis3-survex-import on Ubuntu 22.04
Introduction
In this tutorial we learn how to install qgis3-survex-import on Ubuntu 22.04.
What is qgis3-survex-import
qgis3-survex-import is:
Plugin for QGIS3 which reads binary survex .3d cave survey files, importing stations and legs with all metadata. Supports v8 .3d files Can create passage walls, cross-sections and polygons from LRUD info. Honours the projection specified. The result can be saved into a GeoPackage (.gpkg) shapefile
There are three methods to install qgis3-survex-import on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install qgis3-survex-import Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install qgis3-survex-import using apt-get by running the following command:
sudo apt-get -y install qgis3-survex-import
Install qgis3-survex-import Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install qgis3-survex-import using apt by running the following command:
sudo apt -y install qgis3-survex-import
Install qgis3-survex-import Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install qgis3-survex-import using aptitude by running the following command:
sudo aptitude -y install qgis3-survex-import
How To Uninstall qgis3-survex-import on Ubuntu 22.04
To uninstall only the qgis3-survex-import package we can use the following command:
sudo apt-get remove qgis3-survex-import
Uninstall qgis3-survex-import And Its Dependencies
To uninstall qgis3-survex-import and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove qgis3-survex-import
Remove qgis3-survex-import Configurations and Data
To remove qgis3-survex-import configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge qgis3-survex-import
Remove qgis3-survex-import configuration, data, and all of its dependencies
We can use the following command to remove qgis3-survex-import configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge qgis3-survex-import
References
Summary
In this tutorial we learn how to install qgis3-survex-import package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.