My import of Python modules
import Queue
from threading import Thread
import time
But when I run code
File "b1.py", line 3, in <module>
import Queue
ModuleNotFoundError: No module named 'Queue'
I have seen similar threads on SO,but nothings works for me
/usr/bin/python3 --version
Python 3.5.2
milenko@milenko-System-Product-Name:~$ python --version
Python 3.6.0 :: Anaconda custom (64-bit)
If I change to
from multiprocessing import Queue
there is no import problem.But than I have this
AttributeError: 'Queue' object has no attribute 'join'
What should I try next?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…