-
-
Save cpereiraweb/fbc88099b1c6e09c439610ceb437b355 to your computer and use it in GitHub Desktop.
Install node.js version 6.x Ubuntu 16.04
This file contains 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 webpack -g | |
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 | |
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