apt install python
查看默認(rèn)python版本:
python --version
輸出為2.7.17
查看python2版本:
python2 --version
輸出2.7.17
查看python3版本:
python3 --version
輸出3.6.19
修改默認(rèn)python版本:
echo alias python=python3 >> ~/.bashrc
source ~/.bashrc
再次查看默認(rèn)python版本:
python --version
輸出為3.6.19
posted on 2021-03-15 23:13
小王 閱讀(257)
評(píng)論(0) 編輯 收藏 引用 所屬分類:
linux 、
Python