Ubuntu 20.04 中缺少 python2-requests 包?

Ubuntu 20.04 中缺少 python2-requests 包?

我在 apt 搜索结果中没有看到任何指定的软件包python2-requests。我也没有看到pip2。我该如何为 python2 安装请求模块?

答案1

从 Ubuntu 官方下载页面下载适用于 Ubuntu 19.10 的 python-requests 软件包到你的桌面python-requests_2.21.0-1_all.deb. 使用以下命令从终端安装 python-requests_2.21.0-1_all.deb:

cd ~/Desktop/
sudo apt install ./python-requests_2.21.0-1_all.deb

您不需要下载任何其他依赖项来安装 python-requests_2.21.0-1_all.deb,因为所有必需的依赖项都将从默认的 Ubuntu 20.04 存储库安装,并且不需要使用 pip 安装任何东西,因为这一切都只需一个 apt 命令即可完成。

相关内容