我可以在 Ubuntu 20.04 上安装 Python 3.10 而apt
不必担心它会破坏 Python 3.8 吗?
我在许多项目中使用 Python 3.8。
我会运行这个:
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.10
编辑:
仅使用 Python 3.10 virtualenv
。
答案1
virtualenv 实用程序会创建虚拟 Python 实例,每个实例都可使用自己的 Python 可执行文件调用。在 virtualenv 环境中使用 Python 3.10 不会对 Python 虚拟环境之外默认使用的 Python 版本产生任何影响(Ubuntu 20.04 中的 Python 3.8)。