Module Not Found error for 'dash_editor_components'

Viewed 9

I am trying to use this github https://github.com/explainX/explainx

The code I followed after cloning the github repo

from explainx import * 
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split

However, I am getting this error "Module Not Found"

----> 1 from explainx import *
      2 from sklearn.ensemble import RandomForestClassifier
      3 from sklearn.model_selection import train_test_split

~/explainx/__init__.py in <module>
----> 1 from explainx.explain import *
      2 
      3 from explainx.main import *

~/explainx/explain.py in <module>
     13 sys.path.append(path)
     14 
---> 15 from imports import *
     16 from dashboard import *
     17 from calculate_shap import *

~/explainx/lib/imports.py in <module>
     16 import time
     17 import shap
---> 18 import dash_editor_components
     19 import socket
     20 from contextlib import closing

ModuleNotFoundError: No module named 'dash_editor_components'

I tried to pip install dash but it is still not working. Any help would be appreciated.

0 Answers
Related