- Mastering QGIS
- Kurt Menke GISP Dr. Richard Smith Jr. GISP Dr. Luigi Pirelli Dr. John Van Hoesen GISP
- 571字
- 2021-07-23 19:47:29
QGIS download and installation
QGIS can be installed on Windows, Mac OS X, Unix, Linux, and Android operating systems, making it a very flexible software package. Both the binary installers and source code can be downloaded from download.qgis.org. In this section, we will briefly cover how to install QGIS on Windows, Mac OS X, and Ubuntu Linux. For the most up-to-date installation instructions, refer to the QGIS website.
Installing QGIS on Windows
For Windows, there are two installation options, which are as follows:
- QGIS Standalone Installer: The standalone installer installs the binary version of QGIS and the Geographic Resource Analysis Support System (GRASS) using a standard Windows installation tool. You should choose this option if you want an easy installation experience of QGIS.
- OSGeo4W Network Installer: This provides you with the opportunity to download either the binary or source code version of QGIS, as well as experimental releases of QGIS. Additionally, the OSGeo4W installer allows you to install other open source tools and their dependencies.
Installing QGIS on Mac OS X
To install QGIS on Mac OS X, the Geospatial Data Abstraction Library (GDAL) framework and matplotlib Python module must be installed first, followed by the QGIS installation. The installation files for GDAL, matplotlib, and QGIS are available at http://www.kyngchaos.com/software/qgis.
Installing QGIS on Ubuntu Linux
There are two options when installing QGIS on Ubuntu: installing QGIS only, or installing QGIS as well as other FOSSGIS packages. Either of these methods requires the use of the command line, sudo rights, and the apt-get package manager.
Depending on whether you want to install a stable release or an experimental release, you will need to add the appropriate repository to the /etc/apt/sources.list
file.
With sudo access, edit /etc/apt/sources.list
and add the following line to install the current stable release or current release's source code respectively:
deb http://qgis.org/debian trusty main deb-src http://qgis.org.debian trusty main
Depending on the release version of Ubuntu you are using, you will need to specify the release name as trusty
, saucy
, or precise
. For the latest list of QGIS releases for Ubuntu versions, visit download.qgis.org.
With the appropriate repository added, you can proceed with the QGIS installation by running the following commands:
sudo apt-get update sudo apt-get install qgis python-qgis
To install the GRASS plugin (recommended), install the optional package by running this command:
sudo apt-get install qgis-plugin-grass
The ubuntugis
project installs QGIS and other FOSSGIS packages, such as GRASS on Ubuntu. To install the ubuntugis
package, remove the http://qgis.org/debian
lines from the /etc/apt/sources.list
file, and run the following commands:
sudo apt-get install python-software-properties sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable sudo apt-get update sudo apt-get install qgis python-qgis qgis-plugin-grass
Note
QGIS is also available for Android. We have not provided detailed installation instructions because it is in alpha testing at the moment. However, there are plans to have a normalized installation process in a future release. You can find more information about this at http://hub.qgis.org/projects/android-qgis.
The download page is available at http://qgis.org/downloads/android/.
A related app has recently been announced and it is named QField for QGIS. For a short time, it was named QGIS Mobile. It is described as a field data capture and management app that is compatible with QGIS. At the time of writing this, it was in invite-only alpha testing. It is eventually expected to be available in the Android Play Store. You can find more information on this app at http://www.opengis.ch/tech-blog/.
- 高手是如何做產品設計的(全2冊)
- Java多線程編程實戰指南:設計模式篇(第2版)
- 解構產品經理:互聯網產品策劃入門寶典
- Web交互界面設計與制作(微課版)
- C語言程序設計基礎與實驗指導
- R語言編程指南
- 數據結構與算法JavaScript描述
- 新手學Visual C# 2008程序設計
- Access 2010數據庫基礎與應用項目式教程(第3版)
- Windows Forensics Cookbook
- FPGA嵌入式項目開發實戰
- Learning Unreal Engine Game Development
- Android智能手機APP界面設計實戰教程
- Visual C#(學習筆記)
- 現代JavaScript編程:經典范例與實踐技巧