📅  最后修改于: 2023-12-03 14:51:29.602000             🧑  作者: Mango
在树莓派中默认安装了 Python 2 和 Python 3,但是有时候需要在 Python 3 的不同版本之间进行切换,本文将介绍如何在树莓派上切换 Python 3 的版本。
首先需要安装 Python 3 的不同版本,可以使用以下命令安装到指定的版本:
sudo apt-get install python3.6
sudo apt-get install python3.7
sudo apt-get install python3.8
查看已安装的 Python 3 版本:
ls /usr/bin/python3.*
输出:
/usr/bin/python3.6
/usr/bin/python3.7
/usr/bin/python3.8
切换到指定的 Python 3 版本,可以使用以下命令:
sudo update-alternatives --config python3
然后选择已安装的 Python 3 版本,显示如下:
There are 3 choices for the alternative python3 (providing /usr/bin/python3).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/python3.8 2 auto mode
1 /usr/bin/python3.6 1 manual mode
2 /usr/bin/python3.7 1 manual mode
3 /usr/bin/python3.8 2 manual mode
Press <enter> to keep the current choice[*], or type selection number:
选择要使用的 Python 3 版本的编号并按下 Enter 键即可切换到该版本。
验证已切换到指定的 Python 3 版本:
python3 --version
输出:
Python 3.7.3
或者:
python3 --version
输出:
Python 3.8.5
通过以上步骤,可以在树莓派上轻松切换 Python 3 的不同版本,方便开发和调试不同版本的 Python 代码。