如何在 debian 上安装 python?

如何在 debian 上安装 python?

我想知道如何在我的 Linux VPS(具有 SSH 访问权限)上下载并安装 python。

答案1

发布您迄今为止尝试过的详细信息。

如果尚未尝试,请运行sudo apt-get install python3

答案2

尝试:

apt-get update && apt-get install python

这将更新包信息,如果成功,将安装默认的 python 包及其依赖项。

我假设您以 root 身份登录 VPS,因此无需使用sudo.

相关内容