faceit_live3 icon indicating copy to clipboard operation
faceit_live3 copied to clipboard

error installing 1 dependency and running

Open MJohnston1 opened this issue 5 years ago • 2 comments

I'm on windows 10 and have all the other requirements installed.

when running: pip install -r requirements.txt ERROR: Could not find a version that satisfies the requirement mkl-fft==1.0.15 (from -r requirements.txt (line 38)) (from versions: none) ERROR: No matching distribution found for mkl-fft==1.0.15 (from -r requirements.txt (line 38))

it looks like some form of mkl-fft==1.0.15 is installed, I even installed imageio-ffmpeg to be safe. still not resolving the error running.

When running: python faceit_live.py, this error occurs. Traceback (most recent call last): File "faceit_live.py", line 1, in import imageio ModuleNotFoundError: No module named 'imageio'

MJohnston1 avatar Nov 02 '20 22:11 MJohnston1

This mkl-fft problem is my problem too, I read somewhere that a nomkl module can be used, don't know more about it.

botshake avatar Nov 13 '20 12:11 botshake

The mkl-fft repository ask to install through conda. Same for mkl_random. Thus:

conda install -c intel mkl-service mkl_random mkl_fft

mullerrwd avatar Dec 09 '20 11:12 mullerrwd