1
0
Fork 0
mirror of synced 2024-06-01 10:09:49 +12:00

add deb sources

This commit is contained in:
Nick Sweeting 2020-12-12 13:20:24 +02:00
parent 0cff57da02
commit 1b4f878895

View file

@ -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>