简体   繁体   中英

Import urllib or urllib 2 in Python 2.7 failing with ImportError: cannot import name iskeyword

I can't import urllib or urllib2 on my Python 2.6 or Python 2.7 installs.

Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/urllib.py", line 30, in <module>
    from urlparse import urljoin as basejoin
  File "/usr/lib/python2.7/urlparse.py", line 110, in <module>
    from collections import namedtuple
  File "/usr/lib/python2.7/collections.py", line 10, in <module>
    from keyword import iskeyword as _iskeyword
ImportError: cannot import name iskeyword

I can't seem to find an answer Googling "cannot import name iskeyword" either.

There must be some importing conflicts. Do you have any modules named keyword in you workspace? Try next:

>>> import keyword
>>> dir(keyword)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM