I have installed the packages ‘feature_engine’ & ‘category_encoders’ via conda
conda list
feature_engine 1.8.0 pyhd8ed1ab_0 conda-forge
category_encoders 2.6.3 py311haa95532_0
But when I try to import these packages, I get the ModuleNotFoundError
from feature_engine.variable_transformers import LogTransformer
ModuleNotFoundError Traceback (most recent call last)
Cell In[3], line 1
----> 1 from feature_engine.variable_transformers import LogTransformer
ModuleNotFoundError: No module named 'feature_engine'
import category_encoders
ModuleNotFoundError Traceback (most recent call last)
Cell In[5], line 1
----> 1 import category_encoders
ModuleNotFoundError: No module named 'category_encoders'
Python Version = 3.11.9
python 3.11.9 he1021f5_0
I am running Jupyterlab Version 3.6.7
jupyter_client 8.6.0 py311haa95532_0
jupyter_core 5.7.2 py311haa95532_0
New contributor
Sura Deva is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
4