2021-01-22 18:40:14 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-04-24 03:49:44 +00:00
|
|
|
# ArchiveBox Setup Script: https://github.com/ArchiveBox/ArchiveBox
|
|
|
|
# Usage:
|
|
|
|
# curl 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/dev/bin/setup.sh' | sh
|
2018-06-11 01:58:48 +00:00
|
|
|
|
2021-04-24 03:56:55 +00:00
|
|
|
if (which docker > /dev/null && docker pull archivebox/archivebox); then
|
|
|
|
echo "[+] Initializing an ArchiveBox data folder at ~/archivebox using Docker..."
|
|
|
|
mkdir -p ~/archivebox
|
|
|
|
cd ~/archivebox
|
|
|
|
docker run -v "$PWD":/data -it archivebox init --setup
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2021-04-24 03:43:41 +00:00
|
|
|
echo "[!] It's highly recommended to use Docker instead of running this script. ⚠️"
|
|
|
|
echo " Docker is safer and easier to set up, and includes everything working out-of-the-box:"
|
|
|
|
echo " https://github.com/ArchiveBox/ArchiveBox/wiki/Docker"
|
|
|
|
echo ""
|
|
|
|
echo "Continuing in 5s... (press [Ctrl+C] to cancel)"
|
|
|
|
sleep 5
|
2019-03-12 21:49:40 +00:00
|
|
|
echo "[i] ArchiveBox Setup Script 📦"
|
2018-06-11 01:58:48 +00:00
|
|
|
echo ""
|
2021-04-24 03:43:41 +00:00
|
|
|
echo " This is a helper script which installs the ArchiveBox dependencies on your system using brew/apt/pip3."
|
2019-03-12 21:49:40 +00:00
|
|
|
echo " You may be prompted for a password in order to install the following:"
|
|
|
|
echo ""
|
|
|
|
echo " - python3, python3-pip, python3-distutils"
|
2021-04-24 03:43:41 +00:00
|
|
|
echo " - nodejs, npm (used for singlefile, readability, mercury, and more)"
|
|
|
|
echo " - curl, wget, git, youtube-dl (used for extracting title, favicon, git, media, and more)"
|
|
|
|
echo " - chromium (skips this if any Chrome/Chromium version is already installed)"
|
|
|
|
echo ""
|
2019-03-12 21:49:40 +00:00
|
|
|
echo ""
|
2021-04-24 03:43:41 +00:00
|
|
|
echo " If you'd rather install these manually as-needed, you can find detailed documentation here:"
|
2020-11-23 07:04:39 +00:00
|
|
|
echo " https://github.com/ArchiveBox/ArchiveBox/wiki/Install"
|
2018-06-11 01:58:48 +00:00
|
|
|
echo ""
|
2021-01-22 18:40:14 +00:00
|
|
|
read -p "Press [enter] to continue with the automatic install, or Ctrl+C to cancel..." REPLY
|
2018-06-11 01:58:48 +00:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
# On Linux:
|
|
|
|
if which apt-get > /dev/null; then
|
2021-01-22 18:47:26 +00:00
|
|
|
echo "[+] Adding ArchiveBox apt repo to sources..."
|
2021-04-24 03:43:41 +00:00
|
|
|
if ! (sudo apt install -y software-properties-common && sudo add-apt-repository -u ppa:archivebox/archivebox); then
|
|
|
|
echo "deb http://ppa.launchpad.net/archivebox/archivebox/ubuntu focal main" | sudo tee /etc/apt/sources.list.d/archivebox.list
|
|
|
|
echo "deb-src http://ppa.launchpad.net/archivebox/archivebox/ubuntu focal main" | sudo tee -a /etc/apt/sources.list.d/archivebox.list
|
|
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C258F79DCC02E369
|
|
|
|
sudo apt-get update -qq
|
2018-06-11 01:58:48 +00:00
|
|
|
fi
|
2021-04-24 03:43:41 +00:00
|
|
|
echo "[+] Installing ArchiveBox and its dependencies using apt..."
|
|
|
|
# sudo apt install -y git python3 python3-pip python3-distutils wget curl youtube-dl ffmpeg git nodejs npm ripgrep
|
|
|
|
sudo apt-get install -y archivebox
|
|
|
|
sudo apt-get --only-upgrade install -y archivebox
|
2018-06-11 01:58:48 +00:00
|
|
|
|
|
|
|
# On Mac:
|
2021-04-24 03:43:41 +00:00
|
|
|
elif which brew > /dev/null; then
|
|
|
|
echo "[+] Installing ArchiveBox and its dependencies using brew..."
|
|
|
|
brew tap archivebox/archivebox
|
|
|
|
brew update
|
|
|
|
brew install --fetch-HEAD -f archivebox
|
2018-06-11 01:58:48 +00:00
|
|
|
else
|
2021-04-24 03:43:41 +00:00
|
|
|
echo "[!] Warning: Could not find aptitude or homebrew! May not be able to install all dependencies correctly."
|
2018-06-11 01:58:48 +00:00
|
|
|
echo ""
|
|
|
|
echo " If you're on macOS, make sure you have homebrew installed: https://brew.sh/"
|
|
|
|
echo " If you're on Ubuntu/Debian, make sure you have apt installed: https://help.ubuntu.com/lts/serverguide/apt.html"
|
2019-03-11 07:03:35 +00:00
|
|
|
echo " (those are the only currently supported systems for the automatic setup script)"
|
2018-06-11 01:58:48 +00:00
|
|
|
echo ""
|
2021-04-24 03:43:41 +00:00
|
|
|
echo "See the README.md for Manual Setup & Troubleshooting instructions if you you're unable to run ArchiveBox after this script completes."
|
2018-06-11 01:58:48 +00:00
|
|
|
fi
|
|
|
|
|
2021-04-24 03:43:41 +00:00
|
|
|
# echo "[+] Upgrading npm and pip..."
|
|
|
|
# npm i -g npm
|
|
|
|
# pip3 install --upgrade pip setuptools
|
2021-01-22 18:41:16 +00:00
|
|
|
|
2021-04-24 03:43:41 +00:00
|
|
|
echo "[+] Installing ArchiveBox and its dependencies using pip..."
|
2021-01-22 18:41:16 +00:00
|
|
|
pip3 install --upgrade archivebox
|
2020-09-03 15:40:47 +00:00
|
|
|
|
2021-04-24 03:43:41 +00:00
|
|
|
echo "[+] Initializing ArchiveBox data folder at ~/archivebox..."
|
|
|
|
mkdir -p ~/archivebox
|
|
|
|
cd ~/archivebox
|
2021-04-24 03:50:11 +00:00
|
|
|
exec archivebox init --setup
|