guake-guake/scripts/bootstrap-dev-pip.sh
Gaetan Semet fee49fc8f6 remove rope dependency
Fix #1366

+ freeze pip and pipenv

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2018-08-01 23:03:18 +02:00

18 lines
375 B
Bash
Executable File

#!/bin/bash
echo "Freeze version of pip to ensure build reproductibility"
if [[ $1 == "system" ]]; then
op=""
else
op="--user "
fi
python3 -m pip install $op --upgrade \
'pip==18.0' \
'pipenv==2018.7.1' \
|| echo "you may need to sudo me !"
echo "Please ensure your local bin directory is in your path"
echo "Linux: export PATH=$HOME/.local/bin$PATH"