从 Ubuntu 18.04 版本更新到 19.04 后,遇到如下不同的问题,请给出解决方案。
1)Python 3.6 无法运行,默认版本变为 Python 3.7
这个问题不是问安装3.7后如何安装py3.6
答案1
您可以从 Python 站点下载 Python 3.6.7 源代码,然后自行编译。
wget -P ~/Downloads https://www.python.org/ftp/python/3.6.7/Python-3.6.7.tar.xz
cd ~/Downloads
tar -xJf Python-3.6.7.tar.xz
cd Python-3.6.7
继续安装。
./configure
make
make test
sudo make install
python3
假设您想要的话,这将安装 Python 作为可执行文件。