I would like to set python 3.8 as default on my PC Thinkpad X230 Ubuntu 20.04
I tried setting an alias
gt@gt-ThinkPad-X230:~$ alias python='usr/bin/python3.8'
Q: Does this alter a .bashrc file? If so, which? ~/.bashrc? another? if so, which?
gt@gt-ThinkPad-X230:~$ python --version
bash: usr/bin/python3.8: No such file or directory
Complains it cannot find /usr/bin/python3.8, buuuuut:
gt@gt-ThinkPad-X230:~$ ls /usr/bin/python*
/usr/bin/python /usr/bin/python3.8 /usr/bin/python3-pasteurize
/usr/bin/python2 /usr/bin/python3.8-config /usr/bin/python3-unidiff
/usr/bin/python2.7 /usr/bin/python3-config
/usr/bin/python3 /usr/bin/python3-futurize
How do I get bash to find see /usr/bin/python3.8?