如何在Windows上修复Python的getaddrinfo-failure [英] How to fix getaddrinfo-failure for python on windows

查看:301
本文介绍了如何在Windows上修复Python的getaddrinfo-failure的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果在命令提示符终端中启动python并尝试打开一些url,尽管名称可以通过DNS解析,但我得到以下结果:

if a start python in a command prompt terminal and try to open some url, I get the following result, despite the name being resolveable through DNS:

C:\Windows\system32>nslookup www.google.de
Nicht-autorisierende Antwort:
Name:    www-cctld.l.google.com
Address:  173.194.69.94
Aliases:  www.google.de
C:\Windows\system32>C:\Python27\python.exe
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib
>>> urllib.urlopen("http://www.google.de")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python27\lib\urllib.py", line 84, in urlopen
    return opener.open(url)
  File "C:\Python27\lib\urllib.py", line 205, in open
    return getattr(self, name)(url)
  File "C:\Python27\lib\urllib.py", line 342, in open_http
    h.endheaders(data)
  File "C:\Python27\lib\httplib.py", line 951, in endheaders
    self._send_output(message_body)
  File "C:\Python27\lib\httplib.py", line 811, in _send_output
    self.send(msg)
  File "C:\Python27\lib\httplib.py", line 773, in send
    self.connect()
  File "C:\Python27\lib\httplib.py", line 754, in connect
    self.timeout, self.source_address)
  File "C:\Python27\lib\socket.py", line 553, in create_connection
    for res in getaddrinfo(host, port, 0, SOCK_STREAM):
IOError: [Errno socket error] [Errno 11001] getaddrinfo failed
>>>

我禁用了防火墙,以管理员身份启动了命令提示符,但这几乎是我能想到的. nslookup可以正常工作,所以我看不出有什么问题. 有什么建议吗?

I disabled the firewall, started the command prompt as Administrator, but that’s pretty much all I can think of. nslookup works just fine, so I don't see what’s wrong. Any suggestions?

推荐答案

显然,在Internet Explorer连接设置中,定义了无法访问的代理,并且urllib出于任何原因都考虑了此设置,从而导致了错误.

Apparently within Internet Explorer connection settings, an unreachable proxy was defined and for whatever reason urllib considers this setting and thus caused the error.

这篇关于如何在Windows上修复Python的getaddrinfo-failure的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆