-1

When i try to install pymongo in anaconda it is showing the error. enter image description here please help me to slove this

Joystick
  • 286
  • 1
  • 12
phani
  • 11
  • 1
  • 4
  • looks like you don't have `pip` installed: https://pypi.org/project/pip/ – Paweł Prażak Oct 16 '19 at 08:19
  • 2
    Please copy and paste text from terminal windows (indent using the code button); don't take a screenshot. That makes it easier for others to see the messages directly, and to cite them in answers. – Karl Knechtel Oct 16 '19 at 08:25
  • sure from next time ill do that . Thanks for the advise @KarlKnechtel – phani Oct 16 '19 at 10:04

2 Answers2

4

Try install conda install -c anaconda pip then install the package or you can directly install conda install -c anaconda pymongo.

xtian
  • 98
  • 9
  • C:\Users\p#an!>conda install -c anaconda pip 'conda' is not recognized as an internal or external command, operable program or batch file. It is showing this error – phani Oct 16 '19 at 10:03
  • Open anaconda prompt and run as admin, then try `conda update conda` or `conda update --all`, then try again installing the packages. Take precaution when using pip, its better to check first if the package that you want to install is available on anaconda libraries, because sometimes it causes error. I usually use pip install to anaconda env if there is no available package on anaconda libraries. – xtian Oct 16 '19 at 12:56
  • Or you can install packages using anaconda navigator. Just lunch the app, then go to environments then search the packages you wish to install and select and apply. – xtian Oct 16 '19 at 13:03
-1

Phani Anaconda uses a module named conda. pip is not available for anaconda.

Joystick
  • 286
  • 1
  • 12