1
0
Fork 0
mirror of synced 2024-06-16 09:24:52 +12:00

Update setup.sh

This commit is contained in:
Nick Sweeting 2021-01-22 13:37:25 -05:00 committed by GitHub
parent 7ab62d0b2c
commit d9366774b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,9 +19,7 @@ echo ""
echo " If you'd rather install these manually, you can find documentation here:"
echo " https://github.com/ArchiveBox/ArchiveBox/wiki/Install"
echo ""
echo "Press enter to continue with the automatic install, or Ctrl+C to cancel..."
read
read -p "Press [enter] to continue with the automatic install, or Ctrl+C to cancel..."
echo ""
# On Linux:
@ -29,7 +27,7 @@ if which apt-get > /dev/null; then
echo "[+] Updating apt repos..."
sudo apt update -qq
echo "[+] Installing python3, wget, curl..."
sudo apt install git python3 python3-pip python3-distutils wget curl youtube-dl nodejs npm
sudo apt install -y git python3 python3-pip python3-distutils wget curl youtube-dl nodejs npm
if which google-chrome; then
echo "[i] You already have google-chrome installed, if you would like to download chromium instead (they work pretty much the same), follow the Manual Setup instructions"
@ -42,7 +40,7 @@ if which apt-get > /dev/null; then
chromium --version
else
echo "[+] Installing chromium..."
sudo apt install chromium
sudo apt install chromium || sudo apt install chromium-browser
fi
# On Mac: