I installed Anaconda3 on my Mac and verified that pandas-profiling 1.4.1 is in the anaconda3 environment. Then, I launched Jupyter Notebook from within Anaconda Navigator's anaconda3 environment.
However, when I run a python cell Jupyter Notebook does not import pandas_profiling, it fails to find pandas_profile module. What needs to be changed to get Jupyter Notebook to find the pandas-profiling module?
ModuleNotFoundError Traceback (most recent call
last) Input In [1], in <cell line: 13>() 11 from sklearn.metrics import accuracy_score 12 from sklearn.preprocessing import StandardScaler, MinMaxScaler ---> 13 import pandas_profiling 15 from matplotlib import rcParams 16 import warnings
ModuleNotFoundError: No module named 'pandas_profiling'