Naming Python on Linux systems is very simple and harmless. The important question here is which shell you are using.
Linux sistemlerde Python'a lakap takmak çok basit ve zararsızdır. Burada önemli olan soru kullandığınız hangi kabuktur.
for Bash shell
Code: Select all
echo "alias py=/usr/bin/python3" >> ~/.bashrc
echo "alias python=/usr/bin/python3" >> ~/.bashrc
Code: Select all
echo "alias py=/usr/bin/python3" >> ~/.zshrc
echo "alias python=/usr/bin/python3" >> ~/.zshrc
Lakapların aktifleşmesi için Terminali Yeniden Başlatın.