Skip to content

Instantly share code, notes, and snippets.

@MizukiSonoko
Last active May 25, 2017 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MizukiSonoko/bddc9d456360edd3cc1c463a80f17fad to your computer and use it in GitHub Desktop.
Save MizukiSonoko/bddc9d456360edd3cc1c463a80f17fad to your computer and use it in GitHub Desktop.
# 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