sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7.18 切换默认 Python 版本:使用以下命令选择默认版本: sudo update-alternatives --config python 输出类似于: There are2choicesforthe alternative python (providing /usr/bin/python). Selection Path Priority Status---1/usr/bin/...
Ubuntu提供了update-alternatives命令来管理系统中的多个软件版本,包括Python。你可以使用此命令来设置默认的Python版本。 首先,为python命令添加一个指向你选择的Python版本的替代选项。如果python命令当前指向Python 2(这在旧版本的Ubuntu中很常见),你可能需要先将其指向Python 3。这里以python3.8为例: bash sudo update...
1、列出所有版本:update-alternatives --list python 2、为已经安装的版本创建链接: sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.12 2 最后的数字最大值为默认启动版本!!! 3、设置默认版本:sud...
ln-s/usr/bin/python3.4/usr/bin/python 步骤3:由于python3.7是自己安装的,不在/usr/bin下,而在usr/local/bin或者/usr/local/python3.7.1/bin下(取决于前面执行的./configure还是./configure –prefix=/usr/local/python3.7.1。因此需要先加一条软链接并且把之前的python命令改为python.bak,同时pip也需要更改。
python--version python2--version python3--version 修改系统默认python版本 没有正常的 update-alternatives--list python 添加到版本管理 update-alternatives --install /usr/bin/python python /usr/bin/python2 1 update-alternatives --install /usr/bin/python python /usr/bin/python3 2 ...
二、选择默认python 1、先来看一下安装了那些版本的python 2、看一下不同版本python对应的路径 3、使用update-alternatives --install建立链接 一、Python安装 方法一、从Deadsnakes PPA安装deb软件包 适用于Ubuntu 16.04和任何基于Ubuntu的发行版,包括Kubuntu,Linux Mint和Elementary OS ...
首先,我们需要查看系统中安装的所有Python版本。可以使用以下命令查看: which python which python3 这些命令将显示系统中所有Python的安装路径。接下来,我们可以使用update-alternatives命令来设置默认的Python版本。例如,如果想要将Python 3.7设为默认版本,可以运行以下命令: sudo update-alternatives --install /usr/bin/...
$ python--version 1. 如果您的系统上安装了多个Python版本,您可以使用update-alternatives命令来切换默认Python版本。首先,列出系统中已安装的Python版本: $ update-alternatives--listpython 1. 然后,使用以下命令切换默认Python版本: $sudoupdate-alternatives--configpython ...
1. Ubuntu 20.04 LTS(Focal Fossa):内置Python 3.8版本。 2. Ubuntu 19.10 (Eoan Ermine):内置Python 3.7版本。 3. Ubuntu 18.04 LTS(Bionic Beaver):内置Python 2.7和Python 3.6版本。Python 2.7是Ubuntu默认的Python 2版本,而Python 3.6是Ubuntu默认的Python 3版本。
Ubuntu 系统默认安装了 Python 2.x 版本,但是也可以安装 Python 3.x 版本。下面将分三个部分介绍 Ubuntu 系统中安装 Python 的方法。 一、Ubuntu 中安装 Python 2.x 版本的方法1. 打开终端。2. 输入以下命令安装 Python 2.x: “` sudo apt-get install python “`3. 输入系统密码后,系统会自动下载并安装...