diff --git a/distutils.ext/obidistutils/serenity/bootstrappip.py b/distutils.ext/obidistutils/serenity/bootstrappip.py index 97f37d2..c319f37 100644 --- a/distutils.ext/obidistutils/serenity/bootstrappip.py +++ b/distutils.ext/obidistutils/serenity/bootstrappip.py @@ -15,7 +15,7 @@ getpipurl="https://bootstrap.pypa.io/get-pip.py" def bootstrap(): - getpipfile=os.path.join(get_serenity_dir(),"get-pip.py --user") + getpipfile=os.path.join(get_serenity_dir(),"get-pip.py") with request.urlopen(getpipurl) as getpip: with open(getpipfile,"wb") as out: @@ -24,7 +24,7 @@ def bootstrap(): python = sys.executable - command= "%s %s" % (python,getpipfile) + command= "%s %s --user" % (python,getpipfile) os.system(command)