user2806363
user2806363

Reputation: 2593

Why I'm not able to load mkl module that I've installed using pip?

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

Answers (2)

dennlinger
dennlinger

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

Deepthi Raj - Intel
Deepthi Raj - Intel

Reputation: 21

I think you can use anaconda. It has default mkl package in it.

Upvotes: 0

Related Questions