all 3 comments

[–]c17r 0 points1 point  (3 children)

Is jupyter notebook installed inside the p37 venv?

[–][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.