2

I have been trying to install xlrd into my computer but keep on popping out the below error msg.

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

I am not sure what I am doing wrong here.

Version of Python is 3.6 in my computer

Thanks

user3483203
  • 45,503
  • 8
  • 43
  • 75
shan81
  • 21
  • 1
  • 2

1 Answers1

3

you should be doing python3 -m pip install xlrd

This is because pip is a module within python not an actual command on your computer.

Ryan Schaefer
  • 2,692
  • 1
  • 19
  • 41