Pip是Python中的什么?

44 浏览
0 Comments

Pip是Python中的什么?

这个问题在这里已经有了答案

如何在Windows上安装pip?

我已经在Windows桌面上安装了Python 3.4.1,但我没有pip。我正试图从https://www.reportlab.com/reportlabplus/installation/安装一个模块,它显示pip install rlextra -i https://www.reportlab.com/pypi/。然后如果我执行报告的命令,它会显示以下内容

C:\Python34>pip install rlextra -i https://www.reportlab.com/pypi/
'pip' is not recognized as an internal or external command,
operable program or batch file.

编辑:这个问题不是关于如何安装pip,而是关于为什么需要pip?

admin 更改状态以发布 2023年5月23日
0
0 Comments

https://pypi.python.org/pypi/pip

0
0 Comments

pip命令是一个用于安装和管理Python包的工具,例如在Python包索引中找到的包。

它是easy_install的替代品。

https://github.com/pypa/pip

使用PIP,您可以安装模块。它也会安装依赖项。

0