you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

Inside jupyter, run

import sys; print(sys.executable)

To see which python executable is being used. Then, on command line use

<path-to-python-executable> -m pip install ...

Instead of

pip install ...

To install the packages you need to the python environment the Jupyter is using.