Created
July 11, 2017 05:40
-
-
Save sureshdsk/1af8672b5e19cabd54c78f08630a6e3d to your computer and use it in GitHub Desktop.
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
# brew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# nodejs | |
brew install node | |
# bower | |
npm install -g bower | |
# python 3 | |
brew install python3 | |
#pip | |
curl -O https://bootstrap.pypa.io/get-pip.py && sudo python get-pip.py && rm get-pip.py | |
# virtual env | |
sudo pip install virtualenv | |
#zsh | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# postgres | |
brew install postgresql | |
# brew services start postgresql | |
#mysql | |
brew install mysql | |
# brew services start mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment