Last active
May 25, 2017 08:50
-
-
Save MizukiSonoko/bddc9d456360edd3cc1c463a80f17fad to your computer and use it in GitHub Desktop.
This file contains 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
# homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# cmake | |
brew install cmake | |
echo 'PATH="/usr/local/opt/make/libexec/gnubin:$PATH"' >> ~/.bash_profile | |
# liquidprompt | |
mkdir -p ~/foundation; cd ~/foundation; | |
git clone https://github.com/nojhan/liquidprompt.git | |
source ~/foundation/liquidprompt/liquidprompt | |
# Nodebrew | |
curl https://raw.githubusercontent.com/hokaccha/nodebrew/master/nodebrew | perl - setup | |
export PATH=$HOME/.nodebrew/current/bin:$PATH | |
nodebrew help | |
echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile | |
# Node | |
nodebrew install-binary stable | |
nodebrew use stable | |
echo 'nodebrew use stable' >> ~/.bash_profile | |
npm install -g npm | |
# Python and virtualenv | |
brew install pyenv-virtualenv | |
echo 'if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi' >> ~/.bash_profile | |
# Python 3.5 | |
pyenv install 3.5.0 | |
pyenv virtualenv 3.5.0 sandbox | |
source .pyenv/versions/sandbox/bin/activate | |
# git env | |
git config --global user.email "Waiwai~~" | |
git config --global user.name "mizukisonoko" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment