mirror of
https://github.com/Guake/guake.git
synced 2025-10-26 11:27:13 +00:00
19 lines
397 B
Bash
Executable File
19 lines
397 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>=10' \
|
|
'pipenv>=11.10' \
|
|
'setuptools!=36.6.0' \
|
|
|| 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"
|