我目前正在尝试将 BeautifulSoup 用于 Web 应用程序,并且我已经在本地目录中安装了 beautifulsoup4 egg easy_install --install-dir=PATH_TO_DIR beautifulsoup4
,但是当我运行我的应用程序时,我收到了当前错误,我不知道该怎么办:
Traceback (most recent call last):
from bs4 import BeautifulSoup
File "/home/ryanefoley/py_libs/beautifulsoup4-4.3.2-py2.6.egg/bs4/__init__.py", line 186
if ((isinstance(markup, bytes) and not b' ' in markup)
^
SyntaxError: invalid syntax
我将不胜感激任何帮助!
注意,我在我的 python 脚本中导入模块:
egg_path='/home/ryanefoley/py_libs/beautifulsoup4-4.3.2-py2.6.egg'
sys.path.append(egg_path)
from bs4 import BeautifulSoup