user9222602
user9222602

Reputation: 1

How to use "python -m pip install [package] in windows 7

I've set the environment variable "Path" and included D:\Python\Python36-32\Scripts\;D:\Python\Python36-32\; in it.

This is the program installation process with a picture.

This is the program installation process with a picture.

It's a wrong message.

It's a wrong message.

Who can tell me why I got this mistake?

Upvotes: 0

Views: 995

Answers (2)

AALAP JETHWA
AALAP JETHWA

Reputation: 160

The another way is to add pip to environment variables in windows.
You may refer How to add to the pythonpath in windows 7? to add the same. And then run pip install scrapy.
Syntax:

pip install "package".

Upvotes: 2

SampleText2k77
SampleText2k77

Reputation: 198

pip.exe file is in the Scripts folder, inside Python root. Try: cd Scripts, pip.exe install package

Upvotes: 1

Related Questions