Terminals and other applications cannot be launched because the latest version of python3 on your ubuntu does not symlink to python3.
You can overcome this by doing a symlink in the following way:
Check the version of python3 in /usr/bin
:
ls /usr/bin | grep python
Selecting the latest version of the python3(python3.5
) symlink becomes python3
:
sudo update-alternatives --config python3
Choose your version of python3 (python3.5
) with number. if successful, the result is
update-alternatives: using /usr/bin/python3.5 to provide /usr/bin/python3 (python3) in manual mode
Open your default terminal or restart
if there is an error in point 3, such as:
update-alternatives: warning: forcing reinstallation of alternatives /usr/bin/python3.7 because the python3 link group is broken
Please repeat point 3 and choose another version of python3
.