mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
add deb sources
This commit is contained in:
parent
0cff57da02
commit
1b4f878895
1 changed files with 9 additions and 3 deletions
12
README.md
12
README.md
|
@ -34,8 +34,7 @@ The main index is a self-contained `index.sqlite3` file, and each snapshot is st
|
|||
|
||||
### Quickstart
|
||||
|
||||
ArchiveBox can be installed via [Docker](https://docs.docker.com/get-docker/) (recommended), [`apt`](https://launchpad.net/~archivebox/+archive/ubuntu/archivebox/+packages), [`brew`](https://github.com/ArchiveBox/homebrew-archivebox), or [`pip`](https://www.python.org/downloads/).
|
||||
It works on Linux/BSD (Intel and ARM CPUs with `docker`/`apt`/`pip3`), macOS (with `brew`/`pip3`), and Windows (beta with `docker`/`pip3`).
|
||||
It works on Linux/BSD (Intel and ARM CPUs with `docker`/`apt`/`pip3`), macOS (with `docker`/`brew`/`pip3`), and Windows (beta with `docker`/`pip3`).
|
||||
|
||||
```bash
|
||||
pip3 install archivebox
|
||||
|
@ -109,7 +108,7 @@ docker run -v $PWD:/data -it archivebox/archivebox help # to see more options
|
|||
|
||||
```bash
|
||||
sudo add-apt-repository -u ppa:archivebox/archivebox
|
||||
apt install archivebox
|
||||
sudo apt install archivebox
|
||||
|
||||
# create a new empty directory and initalize your collection (can be anywhere)
|
||||
mkdir ~/archivebox && cd ~/archivebox
|
||||
|
@ -130,6 +129,13 @@ archivebox list --json --with-headers > index.json
|
|||
archivebox help # to see more options
|
||||
```
|
||||
|
||||
For other Debian-based systems or older Ubuntu systems you can add these sources to `/etc/apt/sources.list`:
|
||||
```bash
|
||||
deb http://ppa.launchpad.net/archivebox/archivebox/ubuntu focal main
|
||||
deb-src http://ppa.launchpad.net/archivebox/archivebox/ubuntu focal main
|
||||
```
|
||||
(you may need to install some other dependencies manually however)
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
|
|
Loading…
Reference in a new issue