Skip to content

Instantly share code, notes, and snippets.

@maedoc
Created March 29, 2017 06:03
Show Gist options
  • Save maedoc/88588f41e7241aafc908ebed1d332197 to your computer and use it in GitHub Desktop.
Save maedoc/88588f41e7241aafc908ebed1d332197 to your computer and use it in GitHub Desktop.
Simplified TVB library Git setup
conda create -n tvb python=2 numba scipy matplotlib jupyter numexpr scikit-learn
activate tvb
pip install networkx
git clone https://github.com/the-virtual-brain/tvb-library
git clone https://github.com/the-virtual-brain/tvb-data
set PYTHONPATH=%CD%\tvb-library;%CD%\tvb-library;%PYTHONPATH%
jupyter notebook
@maedoc
Copy link
Author

maedoc commented Mar 29, 2017

For unix, use

source activate tvb
...
export PYTHONPATH=$(pwd)/tvb-library:$(pwd)/tvb-data:$PYTHONPATH

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