Created
November 20, 2017 07:38
-
-
Save timlinux/68b3ca669acff683f28f73af4e32d46e to your computer and use it in GitHub Desktop.
Setup QGIS 2.18 on Ubuntu 16.03
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "deb http://qgis.org/debian xenial main" >> /etc/apt/sources.list | |
| echo "deb-src http://qgis.org/debian xenial main" >> /etc/apt/sources.list | |
| wget -O - http://qgis.org/downloads/qgis-2017.gpg.key | gpg --import | |
| wget -O - http://qgis.org/downloads/qgis-2017.gpg.key | apt-key add - | |
| apt update | |
| apt-get install qgis python-qgis qgis-plugin-grass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment