Skip to content

Instantly share code, notes, and snippets.

@rodrigo-brito
Last active March 19, 2017 22:26
Show Gist options
  • Save rodrigo-brito/13146a5ee29d541f464070d897eaae93 to your computer and use it in GitHub Desktop.
Save rodrigo-brito/13146a5ee29d541f464070d897eaae93 to your computer and use it in GitHub Desktop.
Basic Debian-like environment for linux developers after install
Softwares and setting for the linux in the first use
----------------
sudo apt-get update
sudo apt-get install build-essential git
-- Node --
sudo apt-get install nodejs npm
sudo ln -s /usr/bin/nodejs /usr/bin/node
-- Docker ---
sudo apt-get -y install docker.io
update-rc.d docker defaults
-- Android Studio --
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
sudo apt-get install ubuntu-make
-- Golang --
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
gvm install go1.4 --binary
gvm use go1.4
gvm install go1.8
gvm install go1.8 --default
Other softwares
---------------
Sublime - http://www.sublimetext.com/
Chrome - https://www.google.com/chrome/browser/desktop/
Gogland - https://www.jetbrains.com/go/download/
Android Studio - https://developer.android.com/studio
Genimotion -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment