Closed jared-mackey closed 9 years ago
Python 3 support was only added in version 1.5.0 which will be out soon. If you want to try out master you can pip install from a git url.
Oh, that makes sense. Thanks!
I'm having same issue with Python 2.7! Any solutions please?
Greetings,
I just recently installed docker-compose with pip and when running
docker-compose --version
I getImportError: No module named 'Queue'
Here is the full Traceback
Here I am able to import
Queue
but it isfrom queue import Queue
I went and manually edited
/usr/local/lib/python3.5/site-packages/compose/utils.py
and changed the import fromfrom Queue import Queue, Empty
tofrom queue import Queue, Empty
and that seems to be working for now.Best regards, Jared.