Skip to content

Instantly share code, notes, and snippets.

@tbonesteaks
Created November 8, 2015 04:53
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 tbonesteaks/31329a50e8eb8e32d723 to your computer and use it in GitHub Desktop.
Save tbonesteaks/31329a50e8eb8e32d723 to your computer and use it in GitHub Desktop.
mac - virt

xcodebuild -license pip install virtualenv pip install virtualenvwrapper

which virtualenvwrapper which virtualenv

vi ~/.bashrc

Add these three lines

export WORKON_HOME=$HOME/.virtualenvs export PROJECT_HOME=$HOME/Devel source /usr/local/bin/virtualenvwrapper.sh

source ./.bashrc

mkdir sandbox && cd sandbox mkdir nsot && cd nsot mkvirtualenv nsot workon nsot

pip install nsot git clone https://github.com/dropbox/nsot ../nsot

cd nsot/demo ./run_demo.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment