Thursday, 8 August 2019

installation - Installing QGIS on Centos 6?


I did all that the qgis page says. Install ELGIS. after that i investigate and tried different commands.. but nothing works..the last I tried was:


yum --enablerepo=elgis install qgis

this was the response:


Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile

* base: mirror.edatel.net.co
* epel: mirror.symnds.com
* extras: mirror.edatel.net.co
* rpmfusion-free-updates: mirror.hiwaay.net
* updates: mirror.edatel.net.co
Setting up Install Process
No package qgis available.

seems just with centos this is complicated!



Answer




You'd have to install the repository first


sudo rpm -Uvh http://elgis.argeo.org/repos/6/elgis-release-6-6_0.noarch.rpm

Then to install QGIS


sudo yum install qgis qgis-python qgis-grass qgis-mapserver

or try this


sudo yum --enablerepo=elgis install qgis qgis-grass qgis-python qgis-mapserver

If that still doesn't work, could you try searching for it in the repository?



su -c 'yum search qgis'

and see what the actual package names are.


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...