Open michen00 opened 2 years ago
I have not seen this error and also neither familiar with Windows nor TravisCI.
Why don't you google the error message, probably with PyAV
?
I could find the following info for example.
If you installed FFmpeg in some unusual location you'll need to help PyAV find it at runtime. Can you try adding the directory where the .dll lives to your PATH and try again to import av? https://github.com/PyAV-Org/PyAV/issues/490#issuecomment-475980784
I suspect that the module has successfully installed, but is dynamically linked against FFMPEG. https://stackoverflow.com/a/49158534/13103190
Thanks for getting back to me and helping me to find those posts. I didn't end up solving the problem, but I worked around it by redeveloping my app in a Linux (WSL) environment.
I had the same error, I could fix it with pip install av==9.1.0
I am trying to build my Streamlit app with Travis CI, but I continue to get the
ImportError
below:Here are some lines from the
environment.yml
file that may be relevant:How should I resolve this? Please advise.