blob: 9c654684e9e3732afb5e40ae2150bd59c524c7de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env sh
#
# Install rainbowstream
# https://archivebox.io
# https://github.com/pirate/ArchiveBox
# Parameters
SHARE="$1"
LIB="$2"
# Include basic functions
. $LIB/trashman/functions || exit 1
. $LIB/trashman/debian || exit 1
# Requirements
trashman_apt_install python3 python3-pip python3-dev git curl wget youtube-dl chromium npm
# Youtube-dl
hoarder install youtube-dl
# Install
pip3 install --user -U archivebox
|