python pip install“mkl-fft”无法安装

问题描述 投票:0回答:2

我尝试了“pip install mkl-fft” 但无法完成。

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))

我的环境是

conda create -n myenv1 python=3.5
python -m pip install --upgrade pip

现在 pip 版本是“20.1.1”

此外,我尝试了python 3.7。 我也安装不了

你有什么想法吗? 谢谢你。

python pip
2个回答
6
投票

看来您不是唯一看到此问题的人。从项目的 github 页面,他们实际上直接使用

conda install -c intel mkl_fft

此外,pip 安装问题似乎还存在多个问题。这是一个,和另一个。我建议先尝试 conda 安装。


0
投票

它通过使用 python 3.9 创建虚拟环境然后在其中安装“pip install mkl-fft”对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.