NotePublic/Software/Applications/PPA/Ubuntu_PPA_使用说明.md

39 lines
625 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Ubuntu PPA 使用说明
PPA 表示个人软件包存档Personal Package Archive
## 1.安装
```bash
# for <= 12.04
sudo apt install python-software-properties
# for >= 12.10
sudo apt install software-properties-common
```
## 2.使用
```bash
add-apt-repository <ppa url>
sudo apt update
sudo apt install lighttable-installer
```
如果过程中遇到卡在 wait header 处,试试
```bash
sudo apt clean
sudo apt update
```
## 3.常用 PPA 的添加
### 3.1.Python3.7 for Ubuntu16
```bash
add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.7
sudo apt install python3-pip
```