From 6f742b56e1d92a71925dbdf290c024fef43e9c26 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 12 Mar 2019 17:53:11 -0400 Subject: [PATCH] Updated Install (markdown) --- Install.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Install.md b/Install.md index 9384fd7..9f4b56d 100644 --- a/Install.md +++ b/Install.md @@ -75,19 +75,24 @@ If you don't like running random setup scripts off the internet (:+1:), you can ```bash # On Ubuntu/Debian: +apt install python3 python3-pip python3-distutils git wget curl youtube-dl apt install chromium-browser # Skip this if you already have Google Chrome/Chromium installed -apt install python3 python3-pip git wget curl youtube-dl ``` ```bash # On Mac: +brew install python3 git wget curl youtube-dl brew cask install chromium # Skip this if you already have Google Chrome/Chromium installed in /Applications/ -brew install python3 python3-pip git wget curl youtube-dl ``` ```bash # Check that everything worked and the versions are high enough: -chromium-browser --version && which wget && which python3 && which curl && echo "[√] All dependencies installed." +python3 --version | head -n 1 && +git --version | head -n 1 && +wget --version | head -n 1 && +curl --version | head -n 1 && +youtube-dl --version | head -n 1 && +echo "[√] All dependencies installed." ``` If you have issues setting up Chromium / Google Chrome, see the [[Chromium Install]] page for more detailed setup instructions.