What I\'m trying to do here is to make python3 as my default python. Except the python 2.7 which automatically installed on mac, I installed python3
Before we make the changes, the default version of python in my system was python 2.7.17.
python --versionPython 2.7.17
cdnano ~/.bashrcalias python=python3 (Add this line on top of .bashrc file)ctr+o (To save the file)Enterctr+x (To exit the file)source ~/.bashrc OR . ~/.bashrc (To refresh the bashrc file)
python --versionPython 3.7.5