I had to run the command sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20, but unfortunately I misstyped and wrote sudo update-alternatives --install /usr/bin/gcc gccc /usr/bin/gcc-4.8 20 (so gccc instead of gcc).
Now, when trying to run the regular command, it tells me the alternative link /usr/bin/gcc is allready managed by gcccc.
I've searched around but haven't found a solution yet.
pythonorphpalternative, you'll need to restore an alternative with--setor--installafter removal. As you'd expect,--remova-all, disconnects all links to whatever package you're working with, leaving you with none in yourPATH. – Dale C. Anderson Sep 13 '19 at 18:32sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 3andsudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7to restore my 19.04 system back to what it was (I hope). – Oct 18 '19 at 00:21