作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
由于 Ubuntu 21.10 和通常的 deadsnakes
不再支持 python 3.6方法也行不通。它给出了以下错误。
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
对我来说失败了,在这种情况下删除它并安装其余的。
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。
python3.6 -V
而已。你已经在你的机器上安装了 python3.6。
关于ubuntu - 如何在 Ubuntu 21.10 上安装 python 3.6?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70395169/
我是一名优秀的程序员,十分优秀!