Last active
December 24, 2018 14:21
-
-
Save kolosek/b166b4ba2ddcc293d06bfc9f4cdd1689 to your computer and use it in GitHub Desktop.
Install node.js version 6.x Ubuntu 16.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@elizhenin Thanks! :)