Unverified Commit 03950c9a authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #398 from acozzette/fix-pip-url

Updated get-pip.py URL for Python 3.5

This script was moved to a new URL, and the old URL returns a script
which just prints an error message pointing to the new location.
parents be06f5f8 835c6a1a
...@@ -398,7 +398,7 @@ function get_macpython_environment { ...@@ -398,7 +398,7 @@ function get_macpython_environment {
# Python 3.5 no longer compatible with latest pip # Python 3.5 no longer compatible with latest pip
if [ "$(get_py_mm)" == "3.5" ]; then if [ "$(get_py_mm)" == "3.5" ]; then
# https://stackoverflow.com/a/29751768/1939576 # https://stackoverflow.com/a/29751768/1939576
curl -LO https://bootstrap.pypa.io/3.5/get-pip.py curl -LO https://bootstrap.pypa.io/pip/3.5/get-pip.py
$PYTHON_EXE get-pip.py $PYTHON_EXE get-pip.py
rm get-pip.py rm get-pip.py
else else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment