💭

Run python3 with 'python' command

2023/05/04に公開

Edit bashrc

vi ~/.bashrc

Append it to the end of file.

'G' is the jump command to the end.

alias python="python3" 
alias pip="pip3" 

'Esc' and, ':wq!' is the save command.

Reflect to system

source ~/.bashrc

Discussion