0

I know this question has been asked many times but I still can't get it to work. I have added the path variables python37 as well as python37\scripts. I have reinstalled python ensuring pip was selected to install. I have verified that pip.exe is inside my scripts folder, but still nothing seems to work.

4
  • python -m pip install module_name? Commented Sep 11, 2018 at 20:09
  • Better: py -m pip. Windows Python recommends not messing with your path in the first place and using the py launcher instead. Commented Sep 11, 2018 at 20:11
  • using py -m pip install I was able to make it work. Thank you very much. Commented Sep 12, 2018 at 0:06
  • when you just enter python in the terminal check to which python version it is pointing to or use pip3 to install the pacakge Commented Sep 22, 2018 at 13:38

1 Answer 1

3

try using pip3 (your command) or python(3) -m pip (your command). If neither of those work, you may have to reinstall python.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.