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

Downloads:

251,831

Downloads of v 6.0.882:

8,123

Last Update:

09 May 2025

Package Maintainer(s):

Software Author(s):

  • GeoGebra

Tags:

geogebra6 geogebra algebra graphics mathematics

GeoGebra Classic

  • 1
  • 2
  • 3

6.0.882 | Updated: 09 May 2025

Downloads:

251,831

Downloads of v 6.0.882:

8,123

Maintainer(s):

Software Author(s):

  • GeoGebra

GeoGebra Classic 6.0.882

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by GeoGebra. The inclusion of GeoGebra trademark(s), if any, upon this webpage is solely to identify GeoGebra goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

To uninstall GeoGebra Classic, 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 geogebra-classic.install -y --source="'INTERNAL REPO URL'" [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 geogebra-classic.install -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install geogebra-classic.install
  win_chocolatey:
    name: geogebra-classic.install
    version: '6.0.882'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'geogebra-classic.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.0.882'
end

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


cChocoPackageInstaller geogebra-classic.install
{
    Name     = "geogebra-classic.install"
    Version  = "6.0.882"
    Source   = "INTERNAL REPO URL"
}

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


package { 'geogebra-classic.install':
  ensure   => '6.0.882',
  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

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 09 May 2025.

Description

What is GeoGebra?

GeoGebra is dynamic mathematics software for all levels of education that brings together geometry, algebra, spreadsheets, graphing, statistics and calculus in one easy-to-use package. GeoGebra is a rapidly expanding community of millions of users located in just about every country. GeoGebra has become the leading provider of dynamic mathematics software, supporting science, technology, engineering and mathematics (STEM) education and innovations in teaching and learning worldwide.

Quick Facts

  • Geometry, Algebra and Spreadsheet are connected and fully dynamic
  • Easy-to-use interface, yet many powerful features
  • Authoring tool to create interactive learning resources as web pages
  • Available in many languages for our millions of users around the world
  • Open source software freely available for non-commercial users

Qu'est GeoGebra?

GeoGebra est un logiciel de mathématiques dynamiques, pour tous les niveaux d'éducation, qui associe géométrie, algèbre, tableur, grapheur, statistiques et calcul infinitésimal en un unique logiciel facile à utiliser. La communauté GeoGebra suit une croissance exponentielle de ses millions d'utilisateurs basés dans de nombreux pays. GeoGebra est devenu le premier fournisseur de logiciel de mathématiques dynamiques, soutien à la science, technologie, ingénierie et mathématiques et les innovations dans l'enseignement et l'apprentissage dans le monde entier.

Faits en bref

  • Géométrie, Algèbre et Tableur sont connectés et entièrement dynamiques
  • Interface facile à utiliser bien que contenant de nombreuses fonctionnalités puissantes
  • Outil de création pour réaliser des ressources d'apprentissage interactives sous forme de pages Web
  • Disponible en de nombreuses langues pour nos millions d'utilisateurs à travers le monde
  • Logiciel Open source librement utilisable par des utilisateurs non commerciaux

tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'
$url = 'https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-882-0.msi'
$version = [version]'6.0.882.0'

$packageArgs = @{
    packageName    = $env:ChocolateyPackageName
    fileType       = 'MSI'
    url            = $url
    softwareName   = 'GeoGebra Classic*'
    checksum       = 'ffa0ef2a3c511afec8dce2f968862dafc2f15e16e4fe41c67e6becd053a33afc'
    checksumType   = 'sha256'
    silentArgs     = "ALLUSERS=2 /qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
    validExitCodes = @(0, 3010, 1641)
}

#Uninstalls the previous version of Geogebra Classic if either version exists
Write-Output 'Searching if the previous version exists...'
[array]$checkreg = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']

if ($checkreg.Count -eq 0) {
    Write-Output 'No installed old version. Process to install Geogebra Classic.'
    # No version installed, process to install
    $ExecInstall = $true
} elseif ($checkreg.count -ge 1) {
    $checkreg | ForEach-Object {
        if ($null -ne $_.PSChildName) {
            if ([version]$_.DisplayVersion -lt $version) {
                Write-Output "Uninstalling Geogebra Classic previous version : $($_.DisplayVersion)"

                $unInstallArgs = @{
                    packageName    = $env:ChocolateyPackageName
                    softwareName   = 'GeoGebra Classic*'
                    fileType       = 'MSI'
                    file           = ''
                    silentArgs     = "$($_.PSChildName) /qn /norestart"
                    validExitCodes = @(0, 3010, 1605, 1614, 1641)
                }
                Uninstall-ChocolateyPackage @unInstallArgs
                # Process to install
                Write-Output 'Installing new version of Geogebra Classic'
                $ExecInstall = $true
            } elseif (([version]$_.DisplayVersion -eq $version) -and ($env:ChocolateyForce)) {
                Write-Output "Geogebra Classic $version already installed, but --force option is passed, download and install"
                $ExecInstall = $true
            } else {
                Write-Output 'Newest version or same version of Geogebra Classic is already installed, skip install'
                $ExecInstall = $false
            }
        }
    }
}

# Check if install is required
if ($ExecInstall) {
    Install-ChocolateyPackage @packageArgs
}

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
GeoGebra Classic 6.0.876 12501 Wednesday, February 26, 2025 Approved
GeoGebra Classic 6.0.871 6380 Wednesday, January 8, 2025 Approved
GeoGebra Classic 6.0.864 7932 Thursday, October 24, 2024 Approved
GeoGebra Classic 6.0.857 4928 Thursday, September 19, 2024 Approved
GeoGebra Classic 6.0.853 3449 Thursday, September 5, 2024 Approved
GeoGebra Classic 6.0.851 3215 Friday, August 23, 2024 Approved
GeoGebra Classic 6.0.843 11241 Monday, June 10, 2024 Approved
GeoGebra Classic 6.0.841 4093 Wednesday, May 22, 2024 Approved
GeoGebra Classic 6.0.840.0 609 Friday, May 10, 2024 Approved
GeoGebra Classic 6.0.840 2544 Friday, May 10, 2024 Approved
GeoGebra Classic 6.0.830.0 8769 Friday, March 15, 2024 Approved
GeoGebra Classic 6.0.829.0 3560 Friday, March 8, 2024 Approved
GeoGebra Classic 6.0.826.0 4535 Monday, February 26, 2024 Approved
GeoGebra Classic 6.0.820.0 8276 Monday, January 15, 2024 Approved
GeoGebra Classic 6.0.811.0 10219 Thursday, November 9, 2023 Approved
GeoGebra Classic 6.0.802.0 8028 Monday, September 18, 2023 Approved
GeoGebra Classic 6.0.793.0 4360 Wednesday, August 2, 2023 Approved
GeoGebra Classic 6.0.770.0 15521 Friday, April 7, 2023 Approved
GeoGebra Classic 6.0.760.0 4098 Monday, March 13, 2023 Approved
GeoGebra Classic 6.0.752.0 10572 Thursday, January 5, 2023 Approved
GeoGebra Classic 6.0.749.0 2548 Tuesday, December 13, 2022 Approved
GeoGebra Classic 6.0.745.0 2778 Tuesday, November 29, 2022 Approved
GeoGebra Classic 6.0.744.0 2067 Monday, November 21, 2022 Approved
GeoGebra Classic 6.0.741.0 2883 Monday, November 7, 2022 Approved
GeoGebra Classic 6.0.739.0 1972 Thursday, October 27, 2022 Approved
GeoGebra Classic 6.0.735.0 2405 Monday, October 17, 2022 Approved
GeoGebra Classic 6.0.732.0 2980 Friday, September 30, 2022 Approved
GeoGebra Classic 6.0.729.0 4580 Tuesday, August 30, 2022 Approved
GeoGebra Classic 6.0.726.0 2035 Tuesday, August 16, 2022 Approved
GeoGebra Classic 6.0.721.0 1208 Tuesday, July 19, 2022 Approved
GeoGebra Classic 6.0.720.0 601 Tuesday, July 12, 2022 Approved
GeoGebra Classic 6.0.718.0 1331 Wednesday, June 29, 2022 Approved
GeoGebra Classic 6.0.715.0 1002 Thursday, June 23, 2022 Approved
GeoGebra Classic 6.0.713.0 1404 Friday, June 17, 2022 Approved
GeoGebra Classic 6.0.709.0 2150 Thursday, June 2, 2022 Approved
GeoGebra Classic 6.0.707.0 2034 Monday, May 23, 2022 Approved
GeoGebra Classic 6.0.704.0 2790 Wednesday, May 11, 2022 Approved
GeoGebra Classic 6.0.703.0 2077 Tuesday, May 3, 2022 Approved
GeoGebra Classic 6.0.702.0 1563 Wednesday, April 27, 2022 Approved
GeoGebra Classic 6.0.700.0 2462 Tuesday, April 12, 2022 Approved
GeoGebra Classic 6.0.697.0 1067 Tuesday, April 5, 2022 Approved
GeoGebra Classic 6.0.694.0 2127 Wednesday, March 23, 2022 Approved
GeoGebra Classic 6.0.693.0 1782 Monday, March 14, 2022 Approved
GeoGebra Classic 6.0.691.0 2562 Thursday, March 3, 2022 Approved
GeoGebra Classic 6.0.689.0 1787 Monday, February 21, 2022 Approved
GeoGebra Classic 6.0.688.0 1199 Tuesday, February 15, 2022 Approved
GeoGebra Classic 6.0.687.0 1326 Thursday, February 10, 2022 Approved
GeoGebra Classic 6.0.686.0 1854 Tuesday, February 1, 2022 Approved
GeoGebra Classic 6.0.683.0 2867 Thursday, January 13, 2022 Approved
GeoGebra Classic 6.0.680.0 2379 Friday, December 17, 2021 Approved
GeoGebra Classic 6.0.676.0 3393 Tuesday, November 23, 2021 Approved
GeoGebra Classic 6.0.675.0 1980 Monday, November 15, 2021 Approved
GeoGebra Classic 6.0.671.0 2536 Tuesday, October 19, 2021 Approved
GeoGebra Classic 6.0.670.0 827 Thursday, October 14, 2021 Approved
GeoGebra Classic 6.0.668.0 1679 Wednesday, October 6, 2021 Approved
GeoGebra Classic 6.0.666.0 1491 Tuesday, September 28, 2021 Approved
GeoGebra Classic 6.0.664.0 2185 Monday, September 13, 2021 Approved
GeoGebra Classic 6.0.662.0 1256 Monday, September 6, 2021 Approved
GeoGebra Classic 6.0.659.0 1371 Monday, August 30, 2021 Approved
GeoGebra Classic 6.0.654.0 3465 Wednesday, July 21, 2021 Approved
GeoGebra Classic 6.0.652.0 836 Thursday, July 15, 2021 Approved
GeoGebra Classic 6.0.651.0 791 Wednesday, July 7, 2021 Approved
GeoGebra Classic 6.0.649.0 1122 Tuesday, June 29, 2021 Approved
GeoGebra Classic 6.0.646.0 2390 Wednesday, June 9, 2021 Approved
GeoGebra Classic 6.0.644.0 314 Tuesday, June 8, 2021 Approved
GeoGebra Classic 6.0.640.0 144 Tuesday, June 8, 2021 Approved
GeoGebra Classic 6.0.639.0 2327 Tuesday, April 27, 2021 Exempted
GeoGebra Classic 6.0.637.0 768 Monday, April 19, 2021 Approved
GeoGebra Classic 6.0.636.0 198 Monday, April 19, 2021 Approved
GeoGebra Classic 6.0.631.0 1267 Wednesday, March 17, 2021 Approved
GeoGebra Classic 6.0.620.0 2095 Friday, December 11, 2020 Approved
GeoGebra Classic 6.0.609.0 2592 Monday, October 12, 2020 Approved
GeoGebra Classic 6.0.608.0 820 Tuesday, October 6, 2020 Approved
GeoGebra Classic 6.0.606.0 810 Monday, September 28, 2020 Approved
GeoGebra Classic 6.0.605.0 735 Monday, September 21, 2020 Approved
GeoGebra Classic 6.0.604.0 593 Monday, September 14, 2020 Approved
GeoGebra Classic 6.0.603.0 480 Monday, September 7, 2020 Approved
GeoGebra Classic 6.0.600.0 741 Monday, August 24, 2020 Approved
GeoGebra Classic 6.0.599.0 410 Monday, August 17, 2020 Approved
GeoGebra Classic 6.0.598.0 354 Tuesday, August 11, 2020 Approved
GeoGebra Classic 6.0.596.0 482 Thursday, July 30, 2020 Approved
GeoGebra Classic 6.0.593.0 476 Friday, July 17, 2020 Approved
GeoGebra Classic 6.0.592.0 437 Sunday, July 5, 2020 Approved
GeoGebra Classic 6.0.591.0 347 Monday, June 29, 2020 Approved
GeoGebra Classic 6.0.590.0 495 Thursday, June 18, 2020 Approved
GeoGebra Classic 6.0.588.0 450 Monday, June 8, 2020 Approved
GeoGebra Classic 6.0.587.0 328 Sunday, May 31, 2020 Approved
GeoGebra Classic 6.0.583.0 389 Thursday, May 21, 2020 Approved
GeoGebra Classic 6.0.581.0 310 Tuesday, May 12, 2020 Approved
GeoGebra Classic 6.0.579.0 154 Wednesday, April 29, 2020 Approved
GeoGebra Classic 6.0.578.0 158 Friday, April 24, 2020 Approved
GeoGebra Classic 6.0.574.0 768 Monday, February 24, 2020 Approved
GeoGebra Classic 6.0.573.0 176 Monday, February 10, 2020 Approved
GeoGebra Classic 6.0.564.0 626 Wednesday, October 30, 2019 Approved
GeoGebra Classic 6.0.562.0 408 Thursday, October 17, 2019 Approved
GeoGebra Classic 6.0.560.0 190 Friday, October 11, 2019 Approved
GeoGebra Classic 6.0.559.0 335 Monday, September 23, 2019 Approved
GeoGebra Classic 6.0.546.0 342 Wednesday, August 28, 2019 Approved

This package has no dependencies.

Discussion for the GeoGebra Classic Package

Ground Rules:

  • This discussion is only about GeoGebra Classic and the GeoGebra Classic 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 GeoGebra Classic, 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