Reputation: 2593
I would like to install MKL module, and I do it using pip install MKL
, it prints out that mkl installed successfully, but once I want to load/import it from python, I’ve get this error:
>>> import mkl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named mkl
Any idea what would be the problem?
Upvotes: 8
Views: 11379
Reputation: 11460
At least for Anaconda python, this can be fixed by installing the package conda install mkl-service
, which allows you to call import mkl
.
On the other hand, it is not available via pip install
, so I cannot say how it would work there.
Upvotes: 1
Reputation: 21
I think you can use anaconda. It has default mkl package in it.
Upvotes: 0