如果安装了Ubuntu 18.04/Ubuntu 16.04/Debian 9系统,那么所安装的系统中可能没有commandadd-apt-repository,如果在尝试添加PPA存储库时出现错误:add-apt-repository command not found,则需要安装add-apt-repository,本文介绍它的安装方法。
简介 对于刚接触Debian软件包管理的人来说,add-apt-repository是一个命令行工具,用于在Debian系列Linux发行版中添加个人软件包归档(PPA)。
在Ubuntu 18.04/Ubuntu 16.04/Debian 9上安装add-apt-repository的方法 1、如果系统缺少add-apt-repository命令,请通过在系统终端中运行以下命令来安装software-properties-common软件包: sudo apt update sudo apt -y install software-properties-common dirmngr apt-transport-https lsb-release ca-certificates 2、现在可以使用以下命令添加PPA存储库: sudo add-apt-repository ppa:<PPA Name> 注1:下面的示例添加了PHP PPA存储库: sudo add-apt-repository ppa:ondrej/php 注2:如果出现错误消息:codeDecodeError: ‘ascii’ codec can’t decode byte 0xc5,请在运行add-apt-repository命令之前设置Locale: sudo LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php 3、添加PPA存储库后,更新程序包列表并从存储库安装新程序包: sudo apt update sudo apt install <package> 至此,已经在Ubuntu或Debian系统上成功安装add-apt-repository了。
相关主题 |