Last active
January 30, 2017 15:52
-
-
Save TheNicholasNick/c70559212caa709fcd273cace564f617 to your computer and use it in GitHub Desktop.
CodeAnywhere - Blank Ubuntu 14.04 Initial Config Steps
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
sudo apt-get update | |
sudo apt-get install --reinstall language-pack-en-base | |
sudo dpkg-reconfigure locales | |
cat <<EOT >> ~/.bashrc | |
export LANG=en_US.UTF-8 | |
export LANGUAGE=en_US.UTF-8 | |
export LC_MESSAGES=POSIX | |
EOT | |
sudo reboot | |
sudo apt-get upgrade && \ | |
sudo apt-get install build-essential python-dev |
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 -o ~/install-node-js.sh https://gist.githubusercontent.com/ankurk91/8f107ef490f40f74a1cf/raw/0d4af77d04daf5456b2014185c2757f39cdf1660/install-node-js.sh | |
chmod +x ~/install-node-js-sh | |
~/install-node-js | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment