mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-05-07 17:29:50 +00:00
Bootstrapping: don't use system-site-packages under OS X
This commit is contained in:
parent
7d107d8efa
commit
4be4825112
@ -21,7 +21,10 @@ if [ ! -d "env" ]; then
|
|||||||
python get-pip.py $PIPARGS --force-reinstall
|
python get-pip.py $PIPARGS --force-reinstall
|
||||||
fi
|
fi
|
||||||
deactivate
|
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
|
fi
|
||||||
|
|
||||||
source env/bin/activate
|
source env/bin/activate
|
||||||
|
Loading…
x
Reference in New Issue
Block a user