Tanmesh Shah
Tanmesh Shah

Reputation: 77

ModuleNotFoundError: No module named 'geoplot'

import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
import geopandas as gpd
import geoplot
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-4-b1e30ae19d82> in <module>
      4 import matplotlib.pyplot as plt
      5 import geopandas as gpd
----> 6 import geoplot

ModuleNotFoundError: No module named 'geoplot'

Upvotes: 0

Views: 4698

Answers (1)

Tanmesh Shah
Tanmesh Shah

Reputation: 77

The default Anaconda Cloud channels do not host geoplot, but it can be found on the Conda Forge channel:

conda install -c conda-forge geoplot

Upvotes: 1

Related Questions