Here is a workaround to make Celery work on Ubuntu 24.04 that avoids the use of pip:
----- sudo apt install -y celery python3-celery wget http://mirrors.kernel.org/ubuntu/pool/main/v/vine/python3-vine_5.1.0+dfsg-1_all.deb dpkg -i python3-vine_5.1.0+dfsg-1_all.deb sudo sed -i '/^Requires-Dist: tzdata >=2022.7/ s/^/# /' /usr/lib/python3/dist-packages/celery-5.3.6.dist-info/METADATA ----- The problem seems to be two fold: * the vine package on 24.04 is 5.0.0 which is below the internal celery requirement (>= 5.1.0) * there is a ghost dependency on python3-tzdata which does not exist and should not be necessary (Ubuntu has its own tzdata) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2060333 Title: celery broken on Ubuntu 24.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/celery/+bug/2060333/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
