Skip to content

Instantly share code, notes, and snippets.

@TheNicholasNick
Last active January 30, 2017 15:52
Show Gist options
  • Save TheNicholasNick/c70559212caa709fcd273cace564f617 to your computer and use it in GitHub Desktop.
Save TheNicholasNick/c70559212caa709fcd273cace564f617 to your computer and use it in GitHub Desktop.
CodeAnywhere - Blank Ubuntu 14.04 Initial Config Steps
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
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