How to install pip with python 2.6 on Windows

后端 未结 1 1754
遥遥无期
遥遥无期 2021-01-18 19:05

Im attempting to install pip with python 2.6 on my dev machine to try to match a deployment environment that also uses python 2.6.

Python 2.6 is installed OK. I\'ve

相关标签:
1条回答
  • 2021-01-18 19:19

    For Python 2.6 you need older setuptools. The last setuptools version that works with Python 2.6 is 36.8.

    Download setuptools-36.8.0.zip, unpack and run python2.6 setup.py install.

    After that get-pip.py should install pip for you.

    The last version of pip supporting Python 2.6 is 9.0.3: https://pypi.org/project/pip/9.0.3/#files

    0 讨论(0)
提交回复
热议问题