Commit 1699d24c by Slater-Victoroff

Successful on mac, almost there on ubuntu

parent 821621cd
ruby-rvm
curl
python-software-properties python-software-properties
pkg-config pkg-config
curl
git git
python-virtualenv python-virtualenv
virtualenvwraper
build-essential build-essential
python-dev python-dev
gfortran gfortran
......
...@@ -380,7 +380,15 @@ export WORKON_HOME=$PYTHON_DIR ...@@ -380,7 +380,15 @@ export WORKON_HOME=$PYTHON_DIR
# Load in the mkvirtualenv function if needed # Load in the mkvirtualenv function if needed
if [[ `type -t mkvirtualenv` != "function" ]]; then if [[ `type -t mkvirtualenv` != "function" ]]; then
source `which virtualenvwrapper.sh` case `uname -s` in
Darwin)
source `which virtualenvwrapper.sh`
;;
*)
source /etc/bash_completion.d/virtualenvwrapper
;;
esac
fi fi
# Create edX virtualenv and link it to repo # Create edX virtualenv and link it to repo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment