pythonanacondacondageonames

Geonamescache installation in anaconda


I am new at this and I wonder why I cannot install or import geonamescache library in anaconda.

Apparently, I am the only one among my friends with this problem. Could you help me? Thanks in advance.

Screenshot of error


Solution

  • If you're using conda you should make sure you jupyter notebook is either installed in the same conda environment containing geonamescache or has its kernel pointed to that environment. Check the output conda list in your activated environment for the said package. If you don't find it (I'm expecting you won't) it means pip3 installed geonamescache as a system wide package. You'll need to install it your activated environment using pip install geonamescache. Try not to use the pip3 command in conda environments.