ImportError: No module named ‘Queue’ [duplicate]

import queue is lowercase q in Python 3.

Change Q to q and it will be fine.

(See code in https://stackoverflow.com/a/29688081/632951 for smart switching.)

Leave a Comment