Skip to content

Installation on Harvard RC Cluster

John Hoffer edited this page May 26, 2017 · 3 revisions

Pipe to rc.fas.harvard.edu

ssh -L 1337:localhost:1337 [email protected]
ssh -L 1337:localhost:1337 coxgpu01

Installation on rc.fas.harvard.edu

Create and activate the virtual environment:

VENV_NAME=bfly_v2
source new-modules.sh
module load python/2.7.11-fasrc01  
conda create -n $VENV_NAME --clone="$PYTHON_HOME"      
source activate $VENV_NAME 

Now, clone and go to the root directory of this repository:

git clone https://github.com/Rhoana/butterfly
cd butterfly

Uninstall outdated system packages:

conda uninstall tornado
conda uninstall futures

Now, install butterfly:

pip install -r requirements.txt -e .

Now, run butterfly on your favorite port 1337

bfly 1337

Open your browser to localhost:1337

Version 2

Version 1

Clone this wiki locally