I have purchased new computer and everything is working just fine exept this python file “Globe.py” (see attached file) On previously comp I have Anaconda software, but now I have installed Miniconda. The other python file working just fine but this one “Globe.py” answered me " No module named matplotlib"
Do you have any idea what should be wrong?
Yes, it appears that some packages were not installed with Miniconda (such as matplotlib, or one of its sub-libraries).
You can try to do two things:
manually install matplotlib (and any other missing library that you get from the traceback with conda install [libraryname] (searching here: https://anaconda.org/) or pip install [libraryname] (searching here: https://pypi.org/)
uninstall miniconda and install the full anaconda version, which should have all the required libraries. If any are missing, then you can install them as shown above.