We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3495868 commit 2cb77dbCopy full SHA for 2cb77db
docker/build_scripts/build_utils.sh
@@ -45,7 +45,10 @@ function do_cpython_build {
45
if [ -e ${prefix}/bin/python3 ]; then
46
ln -s python3 ${prefix}/bin/python
47
fi
48
- ${prefix}/bin/python get-pip.py
+ # --force-reinstall is to work around:
49
+ # https://github.com/pypa/pip/issues/5220
50
+ # https://github.com/pypa/get-pip/issues/19
51
+ ${prefix}/bin/python get-pip.py --force-reinstall
52
if [ -e ${prefix}/bin/pip3 ] && [ ! -e ${prefix}/bin/pip ]; then
53
ln -s pip3 ${prefix}/bin/pip
54
0 commit comments