I have Miniconda installed. I successfully installed matplotlib with Anaconda Prompt. My text editor Atom gives me a ModuleNotFoundError when I attempt to import matplotlib. Why isn't Atom able to find matplotlib after I installed it with Anaconda Prompt? matplotlib is located in Miniconda3 > Lib > site-packages
My current understanding is that I need to globally install matplotlib in my Python directory in order for Atom to be able to find it, but when I try to pip inside Command Prompt, I get an error saying: "'pip' is not recognized as an internal or external command, operable program or batch file."
Am I having issues because python was installed as part of Miniconda? Why can't I pip install with Command Prompt, and only with Anaconda prompt? Why can't Atom find my Anaconda Prompt-installed matplotlib?
I am new to programming and Python. Your help would be very much appreciated. I am considering uninstalling Miniconda (though that does not appear to be straightforward) and then installing Python by itself and going from there, but I don't think I should need to do this.