ImportError: No module named 'Queue'
I solve the problem my issue was I had file named queue.py in the same directory
Queue is in the multiprocessing module so:
from multiprocessing import Queue
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.)