ImportError: No module named 'Queue'
www.py4u.net › discuss › 18852It's because of the Python version. In Python 3 it's import Queue as queue; on the contrary in Python 2.x it's import queue. If you want it for both environments you may use something below as mentioned here. try: import queue except ImportError: import Queue as queue