geogebra-classic not found

In accordance with the instructions given by , I tried installing geogebra by first using sudo apt-add-repository -u 'deb stable main', and then sudo apt install geogebra-classic, but when I run the last command, I get the error message "Unable to locate package geogebra-classic". Any tips?

2 Answers

You have add their GPG key by

wget -O - | sudo apt-key add

and then rerun update and install package:

sudo apt-get update
sudo apt-get install geogebra-classic

First, add the GPG key, then the repository, and finally install by these commands:

$ wget -O - | sudo apt-key add
$ sudo apt-add-repository -u 'deb stable main'
$ sudo apt install geogebra-classic 

Thus the latest Geogebra will be installed.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like