-
Notifications
You must be signed in to change notification settings - Fork 585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Base image cuda12.4-python3.12-torch2.5.1 ffmpeg is missing #2121
Comments
I've added this integration test: #2122 |
Alright just released |
Unfortunatelly, 0.13.7 release changed nothing to me in this case. I've reproduced integration test you've added and it works ok with Python 3.9 and failes with Python 3.12. Can you please try this cog.yaml?
It uses |
@bzikst sorry about that I'll give that a try today and see if I can't get this working for you |
OK I am able to replicate the issue here: #2131 |
Alright I have released a new base image which appears to fix this (so no cog update required), can you let me know what happens if you attempt this now? @bzikst |
Yes, it's working as expected now. Thank you for a quick fix! |
Config with base image
r8.im/cog-base:cuda12.4-python3.12-torch2.5.1
seems to be missing ffmpeg. Adding it in system_packages wont help — I think because cog is removing ffmpeg from deps and assumes all base images already have it.I'm using this command to build
cog build --separate-weights --use-cog-base-image
The workaround I use for now is run section:
--mount=type=cache,target=/var/cache/apt,sharing=locked apt-get update -qq && apt-get install -qqy ffmpeg && rm -rf /var/lib/apt/lists/*
The text was updated successfully, but these errors were encountered: