I keep getting this error whenever I import shap, even though "pip install shap" worked and I even installed numba. But I can't import shap. Help, please.
Code:
In [53]: import shap
ModuleNotFoundError Traceback (most recent call last):
<ipython-input-53-efbb001a1501> in <module>
----> 1 import shap
~anaconda3libsite-packagesshap__init__.py in <module>
13
14 # explainers
---> 15 from .explainers._explainer import Explainer
16 from .explainers._kernel import Kernel as KernelExp
17 from .explainers._sampling import Sampling as Sampl
----> 3 from ._image import Image
4 from ._text import Text
5 from ._fixed import Fixed
~anaconda3libsite-packagesshapmaskers_image.py in <module>
12
13 # TODO: heapq in numba does not yet support Typed Lists
---> 14 from numba.core.errors import NumbaPendingDeprecationWar
15 import warnings
16 warnings.simplefilter('ignore', category=NumbaPendingDep
ModuleNotFoundError: No module named 'numba.core'