0

I tried installing mongo-connector using following command prompt:

pip install mongo-connector

It threw error :

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

Please post the solution.

Thanks

MatsLindh
  • 37,884
  • 3
  • 33
  • 57
kavigun
  • 1,431
  • 1
  • 12
  • 23

2 Answers2

0

You may want to try easy_install pip or install pip manually.

ForceBru
  • 36,993
  • 10
  • 54
  • 78
0

pip is a package management system used to install and manage software packages written in Python.Most distributions of Python come with pip pre-installed.

Just set the environment PATH variable pointing to python application and to pip folder, pip generally resides in Scripts folder

setx path "%path%;C:\Python27\;C:\python27\Scripts"

Thanks

kavigun
  • 1,431
  • 1
  • 12
  • 23