I execute pip install cassandra-driver
successfully
and when I type
python -c 'import cassandra; print (cassandra.__version__)'
I got 3.24.0
But when I import cassandra
from jupiter notebook I got :
ModuleNotFoundError Traceback (most recent call last)
in
----> 1 import cassandra
ModuleNotFoundError: No module named 'cassandra'
I'm using python 3, os: windows 10 So, why it's not able to access cassandra as on cmd?