From 2ca21b415f02f93fe2b2355f6c6e97bdf969a69a Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 6 May 2017 00:21:30 -0400 Subject: [PATCH] add dependency check to readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 26092931..a3eb78cf 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,14 @@ Those numbers are from running it single-threaded on my i5 machine with 50mbps d ```bash # On Mac: brew install Caskroom/versions/google-chrome-canary wget python3 -echo -e "#!/bin/bash\n/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary \$@" > /usr/local/bin/google-chrome +echo -e "#!/bin/bash\n/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary \$@" > /usr/local/bin/google-chrome chmod +x /usr/local/bin/google-chrome # On Linux: wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' apt update; apt install google-chrome-beta python3 wget +# Check: +google-chrome --version && which wget && which python3 && echo "[√] All dependencies installed." ``` **Archiving:**