运行脚本会出现此意外的令牌错误和beautifulsoup错误。我看了很多指南,但似乎都没有用。这将提示我的python设置而不是请求或BS有问题。我只有run apt-get remove python
和get-get remove python-pip
,然后都重新安装了它们。
无论如何,输出错误:
$./test.py
import-im6.q16: not authorized `urllib3' @ error/constitute.c/WriteImage/1037.
from: can't read /var/mail/bs4
./test.py: line 3: syntax error near unexpected token `('
./test.py: line 3: `http = urllib3.PoolManager()'
import urllib3
from bs4 import BeautifulSoup
http = urllib3.PoolManager()
r = http.request('GET', 'http://dustyfeet.com')
soup = BeautifulSoup(r.data, 'lxml')
print (soup.title)
print (soup.title.text)
答案 0 :(得分:0)
您确定python正在执行此文件吗?
尝试使用$ python ./test.py
而不是$ ./test.py
来运行它,以确保默认外壳程序不执行您的脚本。