Python:导入错误,没有名为 urllib 的模块
我刚刚从 Linode 租了一个 VPS,它有 python2.5 和 ubuntu 8.04。当我从 python shell 运行此命令时:
import urllib
我得到:
ImportError: No module named urllib
原因是什么?如何将此模块添加到 python 中?不是预装了基础版吗?
会不会是PYTHONPATH问题?
I just rented a VPS from Linode which has python2.5 and ubuntu 8.04. When I run this command from python
shell:
import urllib
I get:
ImportError: No module named urllib
What can be the reason? How can I add this module to python? Isn't it prepackaged with the basic version?
Can it be PYTHONPATH problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,我解决了这个问题。
不知何故,python-tk 包(包括 urllib)丢失了。
所以下面的行解决了这个问题
Ok, I resolved the issue.
Somehow, python-tk package (which includes urllib) was missing.
So the following line fixed the problem
我使用较新的操作系统,所以我不知道这是否有帮助,但以防万一:
I use a later OS, so I don't know if this will help, but just in case: