-3

discription of the problem can be seen in the pictureI am using miniconda3 and it shows that no modules have been installed when I am accessing the module from Jupiter notebook.

I have installed the modules from miniconda prompt by pip install pandas,sklearn etc" the modules have been individually installed and it shows success full installation also, but when accessing it in jupyter notebook it shows error.

desertnaut
  • 57,590
  • 26
  • 140
  • 166

1 Answers1

0

Did you install pip using conda install pip? You need to ensure that pip installs packages somewhere where miniconda looks for them. If you're installing common packages to be used inside conda, I'd recommend using the conda package manager to install them.

Steven
  • 404
  • 1
  • 3
  • 10
  • My guess is that the python interpreter running in Jupyter does not have access to the location of where pip installed the packages. In terminal, could you run ```conda list``` and check that your packages are there? – Steven Jun 08 '20 at 09:47