Different package versions in terminal and jupyter notebook

Beyond mention of using Anaconda, you don’t provide how or on what kind of machine you are doing this. Plus you are vague on what you’ve already done beyond the one line.

As described here, that command is to “create notebook kernel connected with the conda environment”. You’d already have to be operating in that environment within your terminal. So seeing different things is concerning. Be that as it may, it seems you just want to be using pycaret from within your notebook? From within the notebook you are working in, have you tried running the following?

%pip install pycaret

Restart the kernel and test if import pycaret now works.
If that fails to allow the import to work now, try:

%conda install pycaret

For dealing with the packages, you can now use the pip and conda magics from within the notebook. See my recent post here about these magics.

1 Like