-
-
Save NaitikShah/067fea9f9d94fee4b5607e232bfc42d2 to your computer and use it in GitHub Desktop.
Installations.blah
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
wget -qO- https://get.docker.com/ | sh | |
sudo usermod -aG docker $(whoami) |
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 install -y git wget zsh | |
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" | |
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 -y install python2.7 python-pip python-dev | |
sudo -H pip install --upgrade pip | |
sudo apt-get -y install ipython ipython-notebook | |
sudo -H pip install jupyter |
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 add-apt-repository ppa:webupd8team/sublime-text-3 | |
sudo apt-get update | |
sudo apt-get install sublime-text-installer | |
# Settings | |
{ | |
"color_scheme": "Packages/Color Scheme - Default/Pastels on Dark.tmTheme", | |
"translate_tabs_to_spaces": true, | |
"draw_white_space": "all", | |
"tab_size": 4 | |
} | |
# Key Bindings | |
[ | |
{"keys": ["alt+shift+f"], "command": "reindent", "args": {"single_line": false}} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment