Você pode personalizar seu python3
alias. Para isso, você pode modificar o arquivo .bashrc
adicionando " alias python3='python3.3'
" ao final dele. Este script de shell pode fazer isso por você:
#!/bin/bash
cd ~
# Create the ~/.bashrc file if it does not exist
if [ ! -f ./.bashrc ]; then
touch .bashrc
chmod 755 .bashrc
echo "#!/bin/bash" >> .bashrc
fi
# Append the customed alias
echo " " >> .bashrc
echo "alias python3='python3.3'" >> .bashrc
echo " " >> .bashrc
# Reload settings in the .bashrc script
source .bashrc