E:子进程返回错误代码

E:子进程返回错误代码

我正在尝试在 ubuntu 16.04 中安装 pycharm。但是当我运行此命令时sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make,在终端中进行一些处理后,系统停止工作并显示此消息

E: Sub process returns an error code.

答案1

为了安装 ubuntu-make 而不添加 ppa,请运行以下命令:

sudo add-apt-repository --remove ppa:ubuntu-desktop/ubuntu-make
sudo apt update  
sudo apt install ubuntu-make

为了在所有当前支持的 Ubuntu 版本中快速轻松地安装 PyCharm 社区版,请打开终端并输入:

sudo snap install --classic pycharm-community  

此命令将安装一个不依赖于 ubuntu-make 的独立 PyCharm snap 包。

相关内容