From 23699b1157b4fb83cb6252e4fc6c2a544e0c8d5e Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Mon, 22 Mar 2021 14:53:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20Ubuntu=20PPA=20=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E8=AF=B4=E6=98=8E.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: rick.chan --- .../Applications/PPA/Ubuntu_PPA_使用说明.md | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Software/Applications/PPA/Ubuntu_PPA_使用说明.md diff --git a/Software/Applications/PPA/Ubuntu_PPA_使用说明.md b/Software/Applications/PPA/Ubuntu_PPA_使用说明.md new file mode 100644 index 0000000..2e1ab81 --- /dev/null +++ b/Software/Applications/PPA/Ubuntu_PPA_使用说明.md @@ -0,0 +1,38 @@ +# Ubuntu PPA 使用说明 + +PPA 表示个人软件包存档(Personal Package Archive)。 + +## 1.安装 + +```bash +# for <= 12.04 +apt-get install python-software-properties +# for >= 12.10 +apt-get install software-properties-common +``` + +## 2.使用 + +```bash +add-apt-repository +apt-get update +apt-get install lighttable-installer +``` + +如果过程中遇到卡在 wait header 处,试试 + +```bash +apt-get clean +apt-get update +``` + +## 3.常用 PPA 的添加 + +### 3.1.Python3.7 for Ubuntu16 + +```bash +add-apt-repository ppa:deadsnakes/ppa +apt-get update +apt-get install python3.7 +apt-get install python3-pip +```