How to install QGIS 3 on Ubuntu

The last days I was asked a lot, how and where to install the new QGIS 3.
Until now there are no Windows binaries available (as far as I know…). But you can install and run QGIS 3.0 on Linux.

If you are running Ubuntu 17.10 (artful) or even 18.04 (bionic) (beware, it’s still alpha ), it is quite easy to install:

Open your terminal and add the following repositories to your sources.list:

for 17.10:

sudo add-apt-repository "deb     https://qgis.org

Sponsored
/debian artful main"
sudo add-apt-repository "deb-src https://qgis.org/debian artful main"

 

alternatively, for 18.04:

sudo add-apt-repository "deb     https://qgis.org/debian bionic main"
sudo add-apt-repository "deb-src https://qgis.org/debian bionic main"

 

Add public key:

Sponsored
wget -O - https://qgis.org/downloads/qgis-2017.gpg.key | gpg --import
gpg --fingerprint CAEB3DC3BDF7FB45
gpg --export --armor CAEB3DC3BDF7FB45 | sudo apt-key add -


Update and install QGIS:

sudo apt-get update && sudo apt-get install qgis python-qgis qgis-plugin-grass

Enjoy working with the all-new QGIS 3!

However, as soon as binaries for Windows are out, I would still recommend to use QGIS on Linux. In my opinion it runs a lot more stable and with less problems under Linux (which doesn’t mean it runs unstable under Windows…).

The post How to install QGIS 3 on Ubuntu first appeared on GIS-Blog.com.

Ubuntu Server Admin

Recent Posts

How to Fix VMware’s “Could not open /dev/vmmon” Error on Ubuntu

You’ve recently installed VMware Workstation on your Ubuntu system and encountered the frustrating “Could not…

4 hours ago

How to Fix Ubuntu 404 Errors While Fetching Dependencies

Have you ever found yourself staring at a terminal full of 404 errors while trying…

4 hours ago

How to Fix ‘Please Install All Available Updates’ Error When Upgrading Ubuntu 18.04 to 20.04 LTS

One particularly frustrating error that many users face when trying to upgrade from Ubuntu 18.04 …

4 hours ago

How to fix “Release is not valid yet” Error in Docker Containers

In the world of containerization, time synchronization issues can create unexpected roadblocks when working with…

4 hours ago

How to fix “Externally Managed Environment” Pip Errors on Ubuntu

If you’ve recently upgraded to Ubuntu 23.04 or newer, you might have encountered a frustrating…

4 hours ago

Ubuntu now officially supports NVIDIA Jetson: powering the future of AI at the edge

Canonical announces the General Availability of Ubuntu for the NVIDIA® Jetson Orin™ for edge AI…

11 hours ago