scripts: workaround pip 22.0 issues
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
de796a9ec7
commit
5ec98cf0ba
|
@ -49,7 +49,11 @@ create_virtualenv()
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d ${PYTHONDIR} ]; then
|
if [ ! -d ${PYTHONDIR} ]; then
|
||||||
virtualenv -p /usr/bin/python3 ${PYTHONDIR}
|
GET_PIP="${HOME}/get-pip.py"
|
||||||
|
virtualenv --no-pip -p /usr/bin/python3 ${PYTHONDIR}
|
||||||
|
curl https://bootstrap.pypa.io/pip/3.6/get-pip.py -o ${GET_PIP}
|
||||||
|
${PYTHONDIR}/bin/python ${GET_PIP}
|
||||||
|
rm ${GET_PIP}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install/update dependencies
|
# Install/update dependencies
|
||||||
|
|
Loading…
Reference in New Issue