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.
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.
Not sure what OS and version of Anaconda you are using, so I can't be very specific.
According to the official list of packages for the distribution of Anaconda 3.7 for Mac OS(I am currently using it), there are currently 657 packages supported by anaconda(For Windows that number stands at around 620 at the moment). Here is the full list for up-to-date distributions.
I have looked into geonamescache
, and it looks like it might not be supported by Anaconda at all. I suggest you looking into installing it via Pip(keep in mind that I would do that only if necessary as it is better to avoid using Pip with Conda that much). Look at this answer if interested.
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.