I created a new Conda environment using
conda create --prefix ./env pandas numpy matplotlib scikit-learn
and activated the environment, but in jupyter notebook, when importing pandas or numpy, it is showing module not found error
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-2-7dd3504c366f> in <module>
----> 1 import pandas as pd
ModuleNotFoundError: No module named 'pandas'
I tried to install the modules in the environment with
conda install pandas, but it is showing already installed.