2013-08-04 19:57:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-08-17 15:32:49 +00:00
|
|
|
command -v python3 -m venv >/dev/null 2>&1 || { echo >&2 "Python 3.3 required. Install it and try again. Aborting"; exit 1; }
|
2013-08-04 19:57:39 +00:00
|
|
|
|
2014-01-26 14:41:15 +00:00
|
|
|
if [ -d "deps" ]; then
|
|
|
|
# We have a collection of dependencies in our source package. We might as well use it instead
|
|
|
|
# of downloading it from PyPI.
|
|
|
|
PIPARGS="--no-index --find-links=deps"
|
|
|
|
fi
|
|
|
|
|
2013-08-04 19:57:39 +00:00
|
|
|
if [ ! -d "env" ]; then
|
|
|
|
echo "No virtualenv. Creating one"
|
2013-08-17 15:32:49 +00:00
|
|
|
python3 -m venv --system-site-packages env
|
2013-08-04 19:57:39 +00:00
|
|
|
source env/bin/activate
|
2014-01-26 14:41:15 +00:00
|
|
|
# With a new venv, we want to force (without checking if it exists first) installing a venv pip
|
|
|
|
# or else we'll end up with the system one.
|
|
|
|
python get-pip.py $PIPARGS --force-reinstall
|
2013-08-04 19:57:39 +00:00
|
|
|
else
|
|
|
|
echo "There's already an env. Activating it"
|
|
|
|
source env/bin/activate
|
|
|
|
fi
|
|
|
|
|
2014-01-26 14:41:15 +00:00
|
|
|
command -v pip
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "pip not installed. Installing."
|
|
|
|
python get-pip.py $PIPARGS
|
|
|
|
fi
|
|
|
|
|
2013-08-04 19:57:39 +00:00
|
|
|
echo "Installing pip requirements"
|
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
2014-01-26 14:41:15 +00:00
|
|
|
pip install $PIPARGS -r requirements-osx.txt
|
2013-08-04 19:57:39 +00:00
|
|
|
else
|
2013-10-20 19:15:09 +00:00
|
|
|
python3 -c "import PyQt5" >/dev/null 2>&1 || { echo >&2 "PyQt 5.1+ required. Install it and try again. Aborting"; exit 1; }
|
2014-01-26 14:41:15 +00:00
|
|
|
pip install $PIPARGS -r requirements.txt
|
2013-08-04 19:57:39 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Bootstrapping complete! You can now configure, build and run dupeGuru with:"
|
|
|
|
echo ". env/bin/activate && python configure.py && python build.py && python run.py"
|