如何在 Ubuntu 21.10 上安装 python 3.6?
How to install python 3.6 on Ubuntu 21.10?
由于 python 3.6 在 Ubuntu 21.10 中不再受支持,并且通常的 deadsnakes
方法也不起作用。它给出以下错误。
E: The repository 'http://ppa.launchpad.net/deadsnakes/ppa/ubuntu impish Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
Deadsnake 存储库中没有可用的版本。
我可以按照此处的步骤进行安装:
https://tecadmin.net/install-python-3-6-ubuntu-linuxmint/
第 1 步 – 先决条件
sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
libreadline-gplv2-dev
对我来说失败了,在那种情况下删除它并安装其余的。
第 2 步 – 下载 Python3.6
cd /usr/src
sudo wget https://www.python.org/ftp/python/3.6.10/Python-3.6.10.tgz
sudo tar xzf Python-3.6.10.tgz
步骤 3 – 编译 Python 源代码
cd Python-3.6.10
sudo ./configure --enable-optimizations
sudo make altinstall
make altinstall 用于防止替换默认的 python 二进制文件 /usr/bin/python.
第 4 步 – 检查 Python 版本
python3.6 -V
就是这样。您已经在计算机上安装了 python3.6。
如果您无法从那里安装。这可能会有所帮助:https://askubuntu.com/questions/866901/what-can-i-do-if-a-repository-ppa-does-not-have-a-release-file/1302382#1302382
由于 python 3.6 在 Ubuntu 21.10 中不再受支持,并且通常的 deadsnakes
方法也不起作用。它给出以下错误。
E: The repository 'http://ppa.launchpad.net/deadsnakes/ppa/ubuntu impish Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
Deadsnake 存储库中没有可用的版本。
我可以按照此处的步骤进行安装: https://tecadmin.net/install-python-3-6-ubuntu-linuxmint/
第 1 步 – 先决条件
sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
libreadline-gplv2-dev
对我来说失败了,在那种情况下删除它并安装其余的。
第 2 步 – 下载 Python3.6
cd /usr/src
sudo wget https://www.python.org/ftp/python/3.6.10/Python-3.6.10.tgz
sudo tar xzf Python-3.6.10.tgz
步骤 3 – 编译 Python 源代码
cd Python-3.6.10
sudo ./configure --enable-optimizations
sudo make altinstall
make altinstall 用于防止替换默认的 python 二进制文件 /usr/bin/python.
第 4 步 – 检查 Python 版本
python3.6 -V
就是这样。您已经在计算机上安装了 python3.6。
如果您无法从那里安装。这可能会有所帮助:https://askubuntu.com/questions/866901/what-can-i-do-if-a-repository-ppa-does-not-have-a-release-file/1302382#1302382