I'm working in a python3 virtual env. I run jupyter (not installed in the venv). and in a jupyter notebook, I check the packages installed in the venv.
!pip list
Package Version
cycler 0.10.0
kiwisolver 1.3.1
matplotlib 3.3.4
numpy 1.20.0
pandas 1.2.1
Pillow 8.1.0
pip 20.0.2
pkg-resources 0.0.0
pyparsing 2.4.7
python-dateutil 2.8.1
pytz 2020.5
scipy 1.6.0
seaborn 0.11.1
setuptools 44.0.0
six 1.15.0
but
import pandas , numpy
fails with
ModuleNotFoundError: No module named 'pandas'
Why ?