gpt4 book ai didi

python - 如何从 CMD 运行 Pip 命令

转载 作者:IT老高 更新时间:2023-10-28 21:35:51 25 4
gpt4 key购买 nike

据我了解,Python 2.7.9 安装了 Pip,但是当我尝试从 CMD (Windows) 执行 Pip 命令时,出现以下错误:

'pip' is not recognized as an internal or external command, operable program or batch file.

当我输入 python 时,我确实得到以下信息,这表明它已正确安装:

Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.

不过,我确实需要添加一些环境变量来让 python 部分在 CMD 上运行:

  • 添加到环境变量PATH:"C:\Python27\"

  • 定义系统变量PYTHONPATH:"C:\Python27\"

我在 Python 目录中找不到 Pip 文件夹,但是在 C:\Python27\Lib\ 中有一个名为“ensurepip”的文件夹。

有人知道如何让 Pip 命令开始在 CMD 中工作吗?

最佳答案

对于 Python 新手但自己没有搞清楚的人来说一 pip 旁注:this should be automatic安装 Python 时,但以防万一,请注意使用 python 运行 Python Windows 的 CMD 中的命令,您必须首先将其添加到 PATH环境变量,如解释 here


要执行 Pip,首先确保你已经安装它,所以输入你的 CMD:

> python
>>> import pip
>>>

它应该继续没有错误。否则,如果失败,您可以查看 here看看如何安装它。现在你确定你已经拥有了 Pip,你可以使用 Python 从 CMD 运行它,使用 -m (模块)参数,像这样:

> python -m pip <command> <args>

在哪里 <command>是您要运行的任何 Pip 命令,<args>是它的相对参数,用空格分隔。

例如,要安装一个包:

> python -m pip install <package-name>

关于python - 如何从 CMD 运行 Pip 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29817447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com