I entered following command in my jupyter notebook: !pip install -U ibm-watson-machine-learning
and with I can see the package install with !pip list
.
But when I try to import like so: import ibm_watson_machine_learning
, I get following error: ModuleNotFoundError: No module named 'ibm_watson_machine_learning'
.
Advertisement
Answer
SOLVED: For me, I simply needed to update all my packages in conda with conda upgrade --all
.