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 addand 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.