ImportError: No module named 'Queue'

后端 未结 7 1692
再見小時候
再見小時候 2020-12-02 16:35

I am trying to import requests module, but I got this error my python version is 3.4 running on ubuntu 14.04

>>> import requests
Traceb         


        
7条回答
  •  Happy的楠姐
    2020-12-02 17:10

    It'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
    

提交回复
热议问题