When mkl-fft is installed from PyPI pip install mkl_fft, it only declares the following dependencies pip show mkl_fft:
However, this can lead to runtime failures like the following:
>> import mkl_fft
Traceback (most recent call last):
import mkl_fft.interfaces
from . import scipy_fft
from .._scipy_fft import *
import mkl
ModuleNotFoundError: No module named 'mkl'
When
mkl-fftis installed from PyPIpip install mkl_fft, it only declares the following dependenciespip show mkl_fft:However, this can lead to runtime failures like the following: