Open stewartmacdonald opened 4 years ago
I solved this by pinning celery[redis,auth,msgpack]==4.4.7
& kombu==4.6.11
in the docker/requirements.txt
file.
Note: == not >=
Thank you @Wytamma ! Did this work for you @stewartmacdonald ?
Yep, I can successfully get a docker container up and running. Looks like there are some issues getting the actual AIDE application working, but I haven't tried to debug that yet.
Has anyone successfully built this from scratch recently? I'm getting lots of issues with python modules not being found. Looks like pull request #25 tries to fix one of these (
No module named 'kombu.five'
) by pinningcelery
to 4.4.7 indocker/requirements.txt
, but that didn't work for me. Addingkombu == 4.6.11
todocker/requirements.txt
fixed thekombu.five
issue, but then I get the same thing withvine.five
. Addingvine==1.3.0
solves that, but then I get an issue withcelery.task
. Can anyone with a working image supply a list of the correct module versions that I can add to therequirements.txt
file? I'm not particularly experienced with docker and python, so apologies if this is something simple that I'm stuffing up.