Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

QGIS

This is not the latest version of QGIS available.

  • 1
  • 2
  • 3

3.0.0 | Updated: 12 Mar 2018

Downloads:

391,462

Downloads of v 3.0.0:

5,324

Software Author(s):

  • OSGeo

QGIS 3.0.0

This is not the latest version of QGIS available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install QGIS, run the following command from the command line or from PowerShell:

>

To upgrade QGIS, run the following command from the command line or from PowerShell:

>

To uninstall QGIS, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade qgis -y --source="'INTERNAL REPO URL'" --version="'3.0.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade qgis -y --source="'INTERNAL REPO URL'" --version="'3.0.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install qgis
  win_chocolatey:
    name: qgis
    version: '3.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'qgis' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller qgis
{
    Name     = "qgis"
    Version  = "3.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'qgis':
  ensure   => '3.0.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 12 Mar 2018.

Description

QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.

General Features

  • View data -- Spatially-enabled tables and views, vector formats, raster and imagery formats, GRASS raster and vector data and online spacial data.
  • Explore data and compose maps -- Interactively explore spatial data with a friendly GUI.
  • Create, edit, manage and export data -- Vector and raster layers in several formats.
  • Analyze data -- vector analysis, sampling, geoprocessing, geometry and database management tools including the complete GRASS functionality of more than 400 modules.
  • Publish maps on the Internet
  • Extensable functionality through plugins
  • Python console

tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'

$InstallArgs = @{
   packageName    = $env:ChocolateyPackageName
   fileType       = 'EXE'
   softwareName   = "$env:ChocolateyPackageName $env:ChocolateyPackageVersion*"
   url            = 'http://qgis.org/downloads/QGIS-OSGeo4W-3.0.0-3-Setup-x86.exe'
   url64bit       = 'http://qgis.org/downloads/QGIS-OSGeo4W-3.0.0-3-Setup-x86_64.exe'
   checksumType   = 'sha256'
   checksum       = '2485ea963ec80b520cb2b6a896e394f7321744d57943ad77564ab1c0f419b847'
   checksum64     = 'bf03fa2887c7aa748b9eb3b70368ae26095ce62a16bb33f21e6ffdde8640b595'
   silentArgs     = '/S'
   validExitCodes = @(0)
}

# QGIS install is best done with older versions uninstalled
[array]$key = Get-UninstallRegistryKey -SoftwareName "QGIS *"

if ($key.Count -eq 1) {
   $oldVersion = $key[0].PSChildName -replace ".* ([0-9.]*)",'$1'
   $RemoveProc = Start-Process -FilePath $key[0].UninstallString -ArgumentList '/S' -PassThru
   $updateId = $RemoveProc.Id
   Write-Host "Uninstalling old version of QGIS." -ForegroundColor Cyan
   Write-Debug "Uninstall Process ID:`t$updateId"
   $RemoveProc.WaitForExit()

   # The QGIS uninstaller sometimes leaves stuff behind that still prevents install (grr!)
   $OldKey = Get-ChildItem HKLM:\SOFTWARE | 
               Where-Object {$_.name -match "QGIS ([0-9.]*)"} |
               Select-Object -ExpandProperty Name
   if ($OldKey) {
      $oldVersion = $OldKey -replace ".*QGIS ([0-9.]*)",'$1'
      Remove-Item -Path "HKLM:\Software\QGIS $oldVersion" -Recurse
   }
   # AND it leaves behind dead public desktop shortcuts
   $OldLinks = ("QGIS $oldVersion",
               "OSGeo4W Shell.lnk",
               "GRASS GIS *.lnk")
   Foreach ($item in $OldLinks) {
      if (Test-Path "$env:PUBLIC\Desktop\$item") { Remove-Item "$env:PUBLIC\Desktop\$item" -Recurse -Force }
   }

} elseif ($key.Count -gt 1) {
   Throw "Multiple, previous installs found!  Cannot proceed with install of new version."
}

# Finally, install.
Write-Host "Installing QGIS can take a few minutes.  Please be patient." -ForegroundColor Cyan
Install-ChocolateyPackage @InstallArgs
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'

[array]$key = Get-UninstallRegistryKey -SoftwareName 'QGIS *'

if ($key.Count -eq 1) {
   $oldVersion = $key[0].PSChildName -replace '.* ([0-9.]*)','$1'
   $UninstallArgs = @{
      PackageName = $env:ChocolateyPackageName
      FileType    = 'exe'
      SilentArgs  = '/S'
      File        = $key[0].UninstallString
   }
   Uninstall-ChocolateyPackage @UninstallArgs
#   $RemoveProc = Start-Process -FilePath $key[0].UninstallString -ArgumentList '/S' -PassThru
#   $updateId = $RemoveProc.Id
#   Write-Debug "Uninstall Process ID:`t$updateId"
#   $RemoveProc.WaitForExit()
} elseif ($key.Count -gt 1) {
   Throw 'Multiple, previous installs found!  For safety, no uninstall will occur.'
}

# The QGIS uninstaller sometimes leaves stuff behind
$OldKey = Get-ChildItem HKLM:\SOFTWARE | 
            Where-Object {$_.name -match 'QGIS ([0-9.]*)'} |
            Select-Object -ExpandProperty Name
if ($OldKey) {
   $oldVersion = $OldKey -replace '.*QGIS ([0-9.]*)','$1'
   Remove-Item -Path "HKLM:\Software\QGIS $oldVersion" -Recurse
}
# AND it leaves behind dead public desktop shortcuts
$OldLinks = ("QGIS $oldVersion",
            'OSGeo4W Shell.lnk',
            'GRASS GIS *.lnk')
Foreach ($item in $OldLinks) {
   if (Test-Path "$env:PUBLIC\Desktop\$item") { Remove-Item "$env:PUBLIC\Desktop\$item" -Recurse -Force }
}


Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
QGIS 3.34.3 10246 Friday, January 26, 2024 Approved
QGIS 3.34.2 4364 Tuesday, January 9, 2024 Approved
QGIS 3.34.1 3903 Monday, December 18, 2023 Approved
QGIS 3.34.0 4069 Monday, November 13, 2023 Approved
QGIS 3.32.3 14371 Wednesday, September 27, 2023 Approved
QGIS 3.32.2 7546 Friday, August 25, 2023 Approved
QGIS 3.30.3 7657 Friday, June 16, 2023 Approved
QGIS 3.30.2 8437 Sunday, May 14, 2023 Approved
QGIS 3.30.1 7453 Sunday, April 16, 2023 Approved
QGIS 3.30.0 7377 Tuesday, March 7, 2023 Approved
QGIS 3.28.3 3760 Saturday, February 18, 2023 Approved
QGIS 3.28.2 9754 Friday, December 23, 2022 Approved
QGIS 3.28.1 3447 Saturday, December 3, 2022 Approved
QGIS 3.28.0 4436 Saturday, November 5, 2022 Approved
QGIS 3.26.2 5345 Tuesday, August 30, 2022 Exempted
QGIS 3.26.1 3818 Saturday, July 23, 2022 Exempted
QGIS 3.26.0 1761 Friday, July 8, 2022 Exempted
QGIS 3.24.3 3803 Saturday, May 28, 2022 Exempted
QGIS 3.24.2 2911 Monday, May 2, 2022 Exempted
QGIS 3.24.1.20220419 1298 Tuesday, April 19, 2022 Exempted
QGIS 3.24.1 15250 Saturday, March 26, 2022 Exempted
QGIS 3.24.0 2894 Saturday, February 26, 2022 Exempted
QGIS 3.22.3 6998 Wednesday, February 2, 2022 Exempted
QGIS 3.22.2 3095 Wednesday, December 29, 2021 Exempted
QGIS 3.22.1 5054 Saturday, November 27, 2021 Exempted
QGIS 3.22.0 3629 Monday, November 1, 2021 Exempted
QGIS 3.20.3 5464 Tuesday, September 14, 2021 Exempted
QGIS 3.20.2 3538 Wednesday, August 18, 2021 Exempted
QGIS 3.20.1 3311 Friday, July 23, 2021 Exempted
QGIS 3.20.0 1793 Thursday, June 24, 2021 Exempted
QGIS 3.18.3 6063 Tuesday, May 18, 2021 Approved
QGIS 3.18.2 3890 Monday, April 19, 2021 Approved
QGIS 3.18.1 1786 Monday, March 22, 2021 Approved
QGIS 3.18.0 4269 Wednesday, February 24, 2021 Approved
QGIS 3.16.3 2961 Friday, January 29, 2021 Approved
QGIS 3.16.2 3371 Sunday, December 27, 2020 Approved
QGIS 3.16.1 3112 Friday, November 27, 2020 Approved
QGIS 3.16.0 1580 Saturday, November 14, 2020 Approved
QGIS 3.14.16 3701 Monday, September 28, 2020 Approved
QGIS 3.14.15 3780 Sunday, August 30, 2020 Approved
QGIS 3.14.1 1546 Saturday, August 1, 2020 Approved
QGIS 3.14.0 1629 Tuesday, June 30, 2020 Approved
QGIS 3.12.3 1464 Monday, June 8, 2020 Approved
QGIS 3.12.2 1643 Tuesday, April 28, 2020 Approved
QGIS 3.12.1 985 Sunday, April 5, 2020 Approved
QGIS 3.12.0 1356 Sunday, March 8, 2020 Approved
QGIS 3.10.2 1814 Wednesday, January 29, 2020 Approved
QGIS 3.10.1 1782 Friday, December 20, 2019 Approved
QGIS 3.10.0 2189 Monday, November 4, 2019 Approved
QGIS 3.8.3 1915 Saturday, September 28, 2019 Approved
QGIS 3.8.2 2569 Tuesday, August 27, 2019 Approved
QGIS 3.8.1 1113 Wednesday, July 31, 2019 Approved
QGIS 3.8.0 1050 Saturday, June 29, 2019 Approved
QGIS 3.6.3 1156 Saturday, June 1, 2019 Approved
QGIS 3.6.2 1030 Tuesday, April 30, 2019 Approved
QGIS 3.6.1 979 Saturday, March 30, 2019 Approved
QGIS 3.6.0 1259 Thursday, February 28, 2019 Approved
QGIS 3.4.4 1067 Monday, January 28, 2019 Approved
QGIS 3.4.3 3481 Saturday, December 29, 2018 Approved
QGIS 3.4.2 3973 Friday, November 30, 2018 Approved
QGIS 3.4.1 2535 Friday, November 16, 2018 Approved
QGIS 3.4.0 2638 Thursday, November 1, 2018 Approved
QGIS 3.2.3 9194 Tuesday, September 25, 2018 Approved
QGIS 3.2.2 4272 Wednesday, September 12, 2018 Approved
QGIS 3.2.1 19343 Friday, August 3, 2018 Approved
QGIS 3.2.0 7376 Monday, July 16, 2018 Approved
QGIS 3.0.3.20180620 10561 Wednesday, June 20, 2018 Approved
QGIS 3.0.3 13104 Monday, May 28, 2018 Approved
QGIS 3.0.2 16098 Tuesday, April 24, 2018 Approved
QGIS 3.0.1 2758 Thursday, April 5, 2018 Approved
QGIS 3.0.0 5324 Monday, March 12, 2018 Approved
QGIS 2.18.16 21460 Thursday, January 25, 2018 Approved
QGIS 2.18.15 23986 Tuesday, December 19, 2017 Approved
QGIS 2.18.11 2479 Monday, August 14, 2017 Approved
QGIS 2.18.8 923 Tuesday, May 23, 2017 Approved
QGIS 2.18.7 477 Monday, May 22, 2017 Approved
QGIS 2.18.3 2693 Wednesday, January 25, 2017 Approved
QGIS 2.16.2 1304 Monday, September 19, 2016 Approved
QGIS 2.16.1 693 Friday, August 12, 2016 Approved
QGIS 2.14.3 639 Monday, June 6, 2016 Approved
QGIS 2.14.2 530 Tuesday, May 10, 2016 Approved
QGIS 2.14.1 495 Monday, April 11, 2016 Approved
QGIS 2.10.1 818 Thursday, July 30, 2015 Approved
QGIS 2.8.2 760 Tuesday, June 23, 2015 Approved
QGIS 2.8.1 1188 Saturday, March 7, 2015 Approved
QGIS 2.6.1 755 Wednesday, January 21, 2015 Approved

This package has no dependencies.

Discussion for the QGIS Package

Ground Rules:

  • This discussion is only about QGIS and the QGIS package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or QGIS, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus