Ubuntu 16.04 上 Git 安装失败

Ubuntu 16.04 上 Git 安装失败

我正在尝试在 Ubuntu 16.04 LTS 上安装 git 但出现以下错误。

命令:

$ sudo apt install git

错误:

start: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused

答案1

首先使用以下命令确保它已更新,

sudo apt-get update

之后使用以下方式安装 Git,

sudo apt-get install git-core

并使用以下命令检查安装

git --version

相关内容