Skip to content

Instantly share code, notes, and snippets.

@aymanfarhat
Created September 18, 2015 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aymanfarhat/8bc53dc85c40271d9f4c to your computer and use it in GitHub Desktop.
Save aymanfarhat/8bc53dc85c40271d9f4c to your computer and use it in GitHub Desktop.
apt-get update
echo "[Install] Build essential"
sudo apt-get install build-essential
echo "[Install] Python software properties"
apt-get install python-software-properties
echo "[Install] git"
apt-get install git
echo "[Install] node"
curl -sL https://deb.nodesource.com/setup | sudo bash -
apt-get update
apt-get install nodejs
ln -s /usr/bin/nodejs /usr/sbin/node
echo "[Install] npm"
apt-get install npm
echo "[Install] Bower"
npm install --global bower
echo "[Install] Gulp"
npm install --global gulp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment