标签: windows python-3.x command-line pip
I have installed pip but when i try to install requests , i get the following error as in the image
答案 0 :(得分:0)
应该从命令行运行Pip。看起来你正在从Python解释器运行它。
C:\Users\ishan.nitj>pip install requests
如果您无法从命令行调用pip,请将以下内容添加到PATH中。
C:\Python32\scripts
由于pip用于安装模块,因此它不是Python命令,因此不应该从解释器运行。