pip.py checksum? Where can I get it for sure?

It looks strange, that the pip documentation (here: https://pip.pypa.io/en/stable/installing/) tells "To install pip, securely download get-pip.py", but there is no checksum to check if I downloaded the good get-pip.py file.

It's recommended to use package manager like apt or yum , but what can I do on Mac?

So the question is where can I obtain checksum of get-pip.py to download it via wget , to check that it's okay (check it's integrity, that the file isn't corrupted or modified during transmission) and to install it on my Mac?


您可以直接从PyPI下载pip,无论是源代码还是轮盘形式,并使用MD5散列或在此处提供的PGP签名。


The checksum of pip is located on the corresponding PyPi page: https://pypi.python.org/pypi/pip/

You can download it from there directly or use sudo easy_install pip in order to install it via easy_install if possible.

链接地址: http://www.djcxy.com/p/26394.html

上一篇: 使用pip将Python包安装到不同的目录中?

下一篇: pip.py校验和? 我可以在哪里得到它?