gpt4 book ai didi

python - 如何在 Ubuntu 上删除多个版本的 python

转载 作者:行者123 更新时间:2023-12-04 18:29:44 25 4
gpt4 key购买 nike

我的 Ubuntu 设备上有多个 python 版本。首先是 Python 2.7.15+,然后是 Python 3.6.8,最后是我想要的 Python 3.7。

我可以通过 访问 2.7 py
到 3.6 与 python3
到 3.7 和 python3.7

但我只想使用 3.7 版本并使用 py 访问它,我该怎么做呢?
我还安装了 pip,它默认使用 2.7 版本。这就是我想卸载其他两个 python 的原因。

最佳答案

听着,在你的操作系统上玩 python 时你必须小心,因为它会破坏许多应用程序甚至操作系统本身......无论如何:

  • 1)安装python3.7(你已经完成了,让我们继续)
  • 2) 将 Python 3.6 和 Python 3.7 添加到 update-alternatives

    sudo update-alternatives --install/usr/bin/python3 python3
    /usr/bin/python3.6 1

    sudo update-alternatives --install/usr/bin/python3 python3
    /usr/bin/python3.7 2
  • 3) 使用此命令更新 Python 3 以指向 Python 3.7

    sudo update-alternatives --config python3

  • 引用原始指南 -

    https://www.itsupportwale.com/blog/how-to-upgrade-to-python-3-7-on-ubuntu-18-10/

    关于python - 如何在 Ubuntu 上删除多个版本的 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58158372/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com