mkl_fft icon indicating copy to clipboard operation
mkl_fft copied to clipboard

Installation Error: Could not find a version that satisfies the requirement

Open renjiege opened this issue 7 years ago • 9 comments

System: OS High Sierra 10.13.4 Python: 3.7 Pip: 18.0

sudo -H pip3 install mkl-ffl

Error message:

Collecting mkl-ffl Could not find a version that satisfies the requirement mkl-ffl (from versions: ) No matching distribution found for mkl-ffl

the same error message appears when I tried to install mkl-random

renjiege avatar Oct 24 '18 17:10 renjiege

Yes, only 2.7, 3.5, and 3.6 wheels are currently available it seems.

oleksandr-pavlyk avatar Oct 24 '18 17:10 oleksandr-pavlyk

Thanks @oleksandr-pavlyk. I just created a virtual environment with python 3.5 as the interpreter. All the other libraries can be installed normally in the venv except for mkl-fft and mkl-random.

renjiege avatar Oct 25 '18 02:10 renjiege

This can be solved by running conda install -c intel mkl_fft instead of pip.

kebaek avatar Jun 24 '20 01:06 kebaek

ERROR: Could not find a version that satisfies the requirement mkl-service==2.3.0 (from -r /tmp/build_92d7e5cf_/requirements.txt (line 36)) (from versions: none) ERROR: No matching distribution found for mkl-service==2.3.0 (from -r /tmp/build_92d7e5cf_/requirements.txt (line 36))

Note: mkl-service 2.3.0 is already installed . please help

Keerthana2701 avatar Jul 15 '20 02:07 Keerthana2701

While pushing files to git push heroku master , I'm getting the same issue -

remote:        ERROR: Could not find a version that satisfies the requirement mkl-random==1.2.1 (from -r /tmp/build_cb7d0db0/requirements.txt (line 37)) (from versions: 1.2.2)
remote:        ERROR: No matching distribution found for mkl-random==1.2.1 (from -r /tmp/build_cb7d0db0/requirements.txt (line 37))
remote:  !     Push rejected, failed to compile Python app.

Please help how to go by..

debasissil-python avatar May 30 '21 10:05 debasissil-python

While pushing files to git push heroku master , I'm getting the same issue -


remote:        ERROR: Could not find a version that satisfies the requirement mkl-random==1.2.1 (from -r /tmp/build_cb7d0db0/requirements.txt (line 37)) (from versions: 1.2.2)

remote:        ERROR: No matching distribution found for mkl-random==1.2.1 (from -r /tmp/build_cb7d0db0/requirements.txt (line 37))

remote:  !     Push rejected, failed to compile Python app.

Please help how to go by..

I am unable to extend any assistance if I can not reproduce the problem. "heroku" is a name for a remote in your git config, and I have no way of knowing what that it.

Pushing does not trigger any building. This must be done in your precommit script. What is it running?

oleksandr-pavlyk avatar May 30 '21 19:05 oleksandr-pavlyk

ERROR: Could not find a version that satisfies the requirement intel-opencl-rt==2021.3.0 (from dpcpp_cpp_rt->mkl_fft) (from versions: none) ERROR: No matching distribution found for intel-opencl-rt==2021.3.0 (from dpcpp_cpp_rt->mkl_fft)

Getting above error while running below to install mkl_fft in Google colab (Python : 3.7). !pip install mkl_fft

Please help with a solution.

pujaburman30 avatar Jun 28 '21 15:06 pujaburman30

Hello, The issue occurs due to missing of intel-opencl-rt==2021.3.0 for Linux which is required for dpcpp_cpp_rt 2021.3 Pip tries to install latest Perflibs thus issue appears Till intel-opencl-rt==2021.3.0 is published I can suggest following workaround: python -m pip install --index-url https://pypi.anaconda.org/intel/simple --extra-index-url https://pypi.org/simple mkl_fft numpy==1.20.3 dpcpp_cpp_rt==2021.2

Here "https://pypi.anaconda.org/intel/simple" is used to install intel numpy More simple command (without intel numpy using or if you have numpy preinstalled) is: python -m pip install mkl_fft dpcpp_cpp_rt==2021.2

Vyacheslav-Smirnov avatar Jun 30 '21 09:06 Vyacheslav-Smirnov

I had the same problem and removing mkl from requirements.txt solved it

thaizasilva avatar Oct 09 '22 23:10 thaizasilva