在 python 中导入 BeautifulSoup 时遇到问题
我已将 BeautifulSoup 解压到 c:\python2.6\lib\site-packages 中,该路径位于 sys.path 中,但是当我输入 import BeautifulSoup
时,我得到了一个导入错误说不存在这样的模块。显然我在做一些愚蠢的事情......那是什么?
I've unpacked BeautifulSoup into c:\python2.6\lib\site-packages, which is in sys.path
, but when I enter import BeautifulSoup
I get an import error saying no such module exists. Obviously I'm doing something stupid... what is it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能安装了多个 python 版本?检查您正在运行的版本。
另外,我发现使用
easy_install
可以很好地安装 BeautifulSoup。You might have more than one python version installed? Check the version you are running.
Also, I found using
easy_install
worked well for installing BeautifulSoup.