I'm working on Windows 10, using python3.8. I wanted to install the ffpyplayer module, and did so using the command:
python3 -m pip install --upgrade ffpyplayer
There seemed to be no issues. Using python in PowerShell and stating import ffpyplayer
doesn't return anything, however, when I try and run `from ffpyplayer.player import MediaPlayer. It returns the following error
from ffpyplayer.player import MediaPlayer
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File
"C:\Users\g\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\ffpyplayer\player\__init__.py", line 10, in <module>
from ffpyplayer.player.player import MediaPlayer
ImportError: DLL load failed while importing player: The specified module could not be found.
Why is it able to import in one instance and not the next? What is causing the import error in the second example?