Skip to content

Instantly share code, notes, and snippets.

@kolosek
Last active December 24, 2018 14:21
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save kolosek/b166b4ba2ddcc293d06bfc9f4cdd1689 to your computer and use it in GitHub Desktop.
Save kolosek/b166b4ba2ddcc293d06bfc9f4cdd1689 to your computer and use it in GitHub Desktop.
Install node.js version 6.x Ubuntu 16.04
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
echo "Installing NodeJS 6.x"
sudo apt-get install nodejs
echo "Install webpack globally"
sudo npm install webpack -g
echo "Install nightwatch globally"
sudo npm install nightwatch -g
sudo npm install -g brunch
echo "Install Selenium standalone globally"
sudo npm install selenium-standalone@latest -g
sudo selenium-standalone install
echo "Installing Yarn"
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn -y --allow-unauthenticated
echo "Installing driver"
#sudo selenium-standalone install --drivers.chrome.version=2.29 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
#selenium-standalone start
@elizhenin
Copy link

is there error on 10 line?
9 echo "Install nightwatch globally"
10 sudo npm install webpack -g
should be
10 sudo npm install nightwatch -g

@kolosek
Copy link
Author

kolosek commented Aug 15, 2018

@elizhenin Thanks! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment