在我的VM上安装ubuntu之后,我立即尝试安装git。但是我遇到未满足的依赖项错误,所以尝试了:
sudo add-apt-repository ppa:git-core/ppa
然后我得到了错误:
add-apt-repository:找不到命令
我尝试过:
sudo apt-get install software-properties-common
但是,这已经是最新版本。
我的步骤:
sudo apt-get install git
以下软件包具有未满足的依赖性。
git:取决于:liberror-perl,但它不可安装
E:无法纠正问题,您拿着损坏的包裹。
sudo add-apt-repository ppa:git-core/ppa
sudo:add-apt-repository:找不到命令
sudo apt-get install software-properties-common python-software-properties
software-properties-common已经是最新版本。
python-software-properties已经是最新版本。
答案 0 :(得分:2)
要在Ubuntu上安装git,您应运行:
sudo apt-get update
sudo apt-get install git-core
然后输入以下内容检查安装是否有效
git --version