标签: python-3.x
我使用以下命令在Windows上成功安装了请求: 路径> setup.py安装。 但是当我运行此代码时,错误是一样的。 请告诉我解决方案。
导入请求
来自bs4 import BeautifulSoup
r = requests.get(“http://gabe-wise.com”)
r.content
错误是: ImportError:没有名为'requests'的模块
答案 0 :(得分:1)
你应该安装请求
http://docs.python-requests.org/en/latest/
请参阅安装文档 http://docs.python-requests.org/en/latest/user/install/