在 ubuntu 19.10 中尝试下载 python 包时,出现此错误。试过 sudo apt-get update,但没用。如何在 ubuntu 服务器中安装 python
问问题
209 次
2 回答
0
Python 3.6+ 应该默认在 Ubuntu 18+ 上可用,因此首先找出包 repo 文件中列出的可用 Python 版本:
sudo apt search --names-only "^python3\."
查看结果并选择其中 1 个进行安装:
sudo apt install python3.6 # Or 3.7 3.8 3.9, etc
于 2021-02-04T10:26:42.793 回答
0
要安装 python:
sudo apt-get install python3
但是 Ubuntu 已经自带了 python,所以你只需使用python3
. 请注意,在 Ubuntu 中,您始终必须指定版本 3。要执行文件,请运行:
python3 file.py
编辑:
要专门安装 python 3.6,请执行:
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.6
于 2021-02-04T10:26:52.777 回答