简体   繁体   中英

ImportError: cannot import name ResponseError

I am trying to use mod_python. however when i try to access my page I get following error.

    Traceback (most recent call last):

  File "/usr/lib64/python2.6/site-packages/mod_python/importer.py", line 1540, in HandlerDispatch
    default=default_handler, arg=req, silent=hlist.silent)

  File "/usr/lib64/python2.6/site-packages/mod_python/importer.py", line 1205, in _process_target
    module = import_module(module_name, path=path)

  File "/usr/lib64/python2.6/site-packages/mod_python/importer.py", line 299, in import_module
    log, import_path)

  File "/usr/lib64/python2.6/site-packages/mod_python/importer.py", line 683, in import_module
    execfile(file, module.__dict__)

  File "/var/www/pylons-data/prod/reports/scripts/access_reports.py", line 2, in <module>
    import requests

  File "/usr/lib/python2.6/site-packages/requests/__init__.py", line 60, in <module>
    from .api import request, get, head, post, patch, put, delete, options

  File "/usr/lib/python2.6/site-packages/requests/api.py", line 14, in <module>
    from . import sessions

  File "/usr/lib/python2.6/site-packages/requests/sessions.py", line 27, in <module>
    from .adapters import HTTPAdapter

  File "/usr/lib/python2.6/site-packages/requests/adapters.py", line 29, in <module>
    from .packages.urllib3.exceptions import ResponseError

ImportError: cannot import name ResponseError

Any help is appreciated. not sure how i can fix

也许要确保您的模块在sys.path列表中

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