使用python简单上传文件时,会报错:
File "/Library/Python/2.7/site-packages/qcloud_cos/cos_threadpool.py
", line 5, in <module>
from six.moves.queue import Queue
ImportError: No module named queue
解决:
编辑对应的/Library/Python/2.7/site-packages/qcloud_cos/cos_threadpool.py 将第5行的 from six.moves.queue import Queue 改为 from six.moves import queue即可
相似问题