From 4be4825112074a7ea555440239b406f74b17e85e Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sun, 30 Mar 2014 10:26:09 -0400 Subject: [PATCH] Bootstrapping: don't use system-site-packages under OS X --- bootstrap.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 1cb1024b..9a762318 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -21,7 +21,10 @@ if [ ! -d "env" ]; then python get-pip.py $PIPARGS --force-reinstall fi deactivate - python3 -m venv env --upgrade --system-site-packages + if [ "$(uname)" != "Darwin" ]; then + # We only need system site packages for PyQt, so under OS X, we don't enable it + python3 -m venv env --upgrade --system-site-packages + fi fi source env/bin/activate