Skip to content

[已解決][Linux] add-apt-repository: command not found

Last Updated on 2021-10-24 by Clay

"add-apt-repository: command not found" 是個常見的找不到指令的錯誤,但是卻無法透過 search add-apt-repository 指令或是 apt install add-apt-repository 指令找到並安裝。

實際上需要直接使用 sudo apt install software-properties-common 指令安裝才行


問題描述

最近我的 Linux 電腦東缺西缺的,正當我想要添加 ppa 來安裝更多套件時,反而報錯了:

sudo: add-apt-repository: command not found


看來我的環境中連 add-apt-repository 都沒有。不過這時候,不論是使用 apt search add-apt-repository 或是 apt install add-apt-repository 指令,都是找不到、也安裝不了的狀況。


解決方法

使用以下指令安裝:

sudo apt install software-properties-common


安裝結束之後,便可以使用指令 sudo add-apt-repositry ppa:xxxxxxx 添加了。


References


Read More

Tags:

Leave a Reply