We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When mkl-fft is installed from PyPI pip install mkl_fft, it only declares the following dependencies pip show mkl_fft:
mkl-fft
pip install mkl_fft
pip show mkl_fft
Requires: mkl, numpy
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'
The text was updated successfully, but these errors were encountered:
closed by #153
Sorry, something went wrong.
No branches or pull requests
When
mkl-fft
is 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:
The text was updated successfully, but these errors were encountered: