I'm trying to import coremltools into my python script so I can make a coreml model to use in my app I've followed the docs.
Everytime I run the script I get this error
ImportError Traceback (most recent call last)
<ipython-input-10-5bf9ddba4efd> in <module>()
----> 1 import coremltools
ImportError: No module named coremltools
My python version is Python 2.7.8 and when I do pip list I can see the coremltools module.
coremltools 2.1.0
Any ideas why I can't access this? and why I get the error to the import statement
>Any ideas why I can't access this?
If not about paths, then and/or permissions, most likely.
I found it to be the enviroment I was using, but when I used the terminal it worked fine.
It was an issue with sypder, if run my python script outside of spyder it runs fine and all works correctly.
But thanks for your feed back