$ sudo pip install beautifulsoup4
Requirement already satisfied (use --upgrade to upgrade): beautifulsoup4 in /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages
Cleaning up...


我安装了beautifulsoup4,它似乎已成功完成,但无法导入:

Python 2.7.3 (v2.7.3:70, Apr  9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import beautifulsoup4
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named beautifulsoup4
>>> import beautifulsoup
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named beautifulsoup

最佳答案

该模块称为bs4

from bs4 import BeautifulSoup

关于python - 为什么在使用pip和/或easy_install安装python 2.7之后无法在Mac上使用Python 2.7导入beautifulsoup?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13891934/

10-09 15:22