Everytime after I restart the machine, "source ~/.bash_profile" has to be executed first in order to use "python" as an alias for "python3". Is there a solution for this problem?
I have the following lines in my ~/.bash_profile:
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH=/opt/python35/bin/:$PATH
alias python="python3"
export PATH
Thanks in advance!