C:\Users\Mtronics>pip install numpy
'pip' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\Mtronics>
Asked
Active
Viewed 398 times
-8

khelwood
- 55,782
- 14
- 81
- 108

Ninad Ingale
- 1
- 3
-
`pip3` or `python -m pip` or `python3 -m pip` – h4z3 Oct 14 '20 at 08:10
-
1You need to add `pip` path in env variable – Ajay A Oct 14 '20 at 08:11
1 Answers
0
try setx PATH "%PATH%;C:\Python34\Scripts"
if it is not working install your python modules like this python -m pip install [packagename]

Logendher
- 16
- 4