我想我已经成功安装了pip,然后使用pip install lxml
安装了lxml,然后使用pip install requests
安装了请求。
我还下载了beautifulsoup4-4.3.2
并将其解压缩。
我已成功运行python setup.py install
并完成pip install beautifulsoup4
。
我在环境变量中添加了C:\Python\Scripts
。
但是当我写from bs4 import beautifulsoup4/BeautifulSoup
时,我收到语法错误。
它表示from
未被识别为内部或外部命令。
此外,当我执行soup = BeautifulSoup(r.content)
时,它表示未定义名称BeautifulSoup
。