Installing Qgis on Ubuntu/Debian

You need to install Qgis on Ubuntu. There is standard documentation, but the proposed solutions do not work. apt-get does not detect some necessary packages and fails.

In case of key server errors, add the public key of the repository qgis.org to the apt keychain by running:

wget -O - http://qgis.org/downloads/qgis-2015.gpg.key | gpg --import
gpg --fingerprint 3FF5FFCAD71472C4
gpg --export --armor 3FF5FFCAD71472C4 | sudo apt-key add -

That didn't help either.

Author: Nick Volynkin, 2015-10-03

1 answers

It worked by adding a separate PPA with an unstable release.

sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable

sudo apt-get update

If you need to update:

sudo apt-get upgrade

If you install:

sudo apt-get install qgis python-qgis qgis qgis-plugin-grass
 1
Author: Nick Volynkin, 2015-10-03 12:25:44