packages in environment at /anaconda3/envs/turienv:
Name Version Build Channel
coremltools 2.0b1
But when I open jupyter notebook following the instruction of the manual the import does not work, it seems like jupyter can not see the library, I access from the turienv enviroment
How can I solve this issue? I have searched in internet and not found a solution.
I have restarted mac and not working, I have executed !pip install turicreate==5.0 and not working too. I don’t know why but it seems jupyter notebook can not access turicreate module, is there anyway to uninstall jupyter notebook and install again from scratch?
I see that if I execute from terminal python and when it shows the prompt of python >> if I do import turicreate as tc then it imports correct turicreate, so I think that must have a problem with jupyter notebook installation, but I do not know how to solve it. It is quite frustating.
I think that I have got it and why it is happening.
From Terminal if I execute:
python
import sys
sys.executable
I got: ‘/anaconda3/envs/turienv/bin/python’
If I did the same from jupyter notebook (except python): ‘/anaconda3/envs/python37/bin/python3’
In an url of internet (https://github.com/jupyter/notebook/issues/2563), they said that if I execute: sudo -H pip2 install jupyter it worked, I tried it and it has imported well then it worked from terminal and from Anaconda Navigator too.