Reputation: 339
I tried "pip install mkl-fft" but could not finish.
ERROR: Could not find a version that satisfies the requirement mkl-fft (from -r requirements.txt (line 11)) (from versions: none)
ERROR: No matching distribution found for mkl-fft (from -r requirements.txt (line 11))
my env is
conda create -n myenv1 python=3.5
python -m pip install --upgrade pip
now pip ver is "20.1.1"
Further, I tried python 3.7. I can`t install too.
do you have any Idea? thank you.
Upvotes: 5
Views: 14892
Reputation: 1
It worked for me by creating a virtual environment with python 3.9 and then installing pip install mkl-fft
in it.
Upvotes: 0
Reputation: 136
It seems you're not the only one that's seeing this issue. From the project's github page, they actually direct to use a conda install -c intel mkl_fft
.
Further it looks like there are multiple issues open for pip install problems. Here's one, and another. I would recommend trying the conda install first.
Upvotes: 7