Last active
November 11, 2015 05:26
-
-
Save 5a494d/781c1e899e909a45d6f6 to your computer and use it in GitHub Desktop.
qgis - config
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
#!/usr/bin/bash | |
# Shell para la instalacion de qgis junto con el servidor | |
# Load public keys for qgis repository | |
sudo gpg --recv-key DD45F6C3 | |
sudo gpg --export --armor DD45F6C3 | sudo apt-key add - | |
# upgrade system packages | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get dist-upgrade | |
# Instalacion de aplicaciones | |
sudo apt-get install gdal-bin qgis qgis-common qgis-mapserver |
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
# for debian | |
deb http://qgis.org/debian jessie main | |
deb-src http://qgis.org/debian jessie main | |
# for raspbian | |
# deb http://archive.raspbian.org/raspbian wheezy jessie main contrib non-free | |
# deb-src http://archive.raspbian.org/raspbian wheezy jessie main contrib non-free | |
# deb http://qgis.org/debian wheezy jessie main | |
# deb-src http://qgis.org/debian wheezy jessie main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment