Commit 098808c9 by Calen Pennington

Merge pull request #246 from MITx/jarv/create-dev-script-updates

error in script for site package handling
parents 43cd2c21 a75ac16d
...@@ -36,7 +36,7 @@ usage() { ...@@ -36,7 +36,7 @@ usage() {
Usage: $PROG [-c] [-v] [-h] Usage: $PROG [-c] [-v] [-h]
-c compile scipy and numpy -c compile scipy and numpy
-s --system-site-packages for virtualenv -s do _not_ set --no-site-packages for virtualenv
-v set -x + spew -v set -x + spew
-h this -h this
...@@ -254,9 +254,9 @@ source $RUBY_DIR/scripts/rvm ...@@ -254,9 +254,9 @@ source $RUBY_DIR/scripts/rvm
# skip the intro # skip the intro
LESS="-E" rvm install $RUBY_VER LESS="-E" rvm install $RUBY_VER
if [[ -n $systempkgs ]]; then if [[ -n $systempkgs ]]; then
virtualenv --system-site-packages "$PYTHON_DIR"
else
virtualenv "$PYTHON_DIR" virtualenv "$PYTHON_DIR"
else
virtualenv --no-site-packages "$PYTHON_DIR"
fi fi
source $PYTHON_DIR/bin/activate source $PYTHON_DIR/bin/activate
output "Installing gem bundler" output "Installing gem bundler"
......
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