urlopen Windows FTP 错误

发布于 2024-12-03 17:35:24 字数 322 浏览 0 评论 0原文

这段代码在linux下完美运行,但在windows下却出现错误。怎么了?

import urllib, urllib2

a = 'ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest'

urllib.urlopen(a)
IOError: [Errno ftp error] proxy support for ftp protocol currently not implemented

urllib2.urlopen(a)
URLError: <urlopen error ftp error: >

This code works perfectly at linux, but windows at there are errors. What's wrong?

import urllib, urllib2

a = 'ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest'

urllib.urlopen(a)
IOError: [Errno ftp error] proxy support for ftp protocol currently not implemented

urllib2.urlopen(a)
URLError: <urlopen error ftp error: >

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

停顿的约定 2024-12-10 17:35:24

检查您的 Internet Explorer 中是否有一些代理设置:菜单附加 -> Internet 选项,还有连接 ->“LAN 设置”(或类似的内容)。如果您有代理服务器设置,urllib 将不起作用。

Check if you have some proxy settings in your Internet Explorer: Menu Extras->Internet Options, there Connections->"LAN settings" (or something similar). If you have a Proxy server setting, urllib will not work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文