Windows XP 上的 Scrapy 导入错误:没有名为 w3lib.html 的模块
我刚刚尝试在运行 Windows XP 的工作电脑上安装并运行 scrapy。
如果我运行 scrapy startproject myproject ,我会得到以下错误:
ImportError: No module named w3lib.html
Wining: It's确实很麻烦在Windows XP上运行Python / Scrapy。在 Linux 上,我只需运行 pip install Scrapy 就可以了,哈哈。
I just tried installing and running scrapy on my PC at work, which runs Windows XP.
If I run scrapy startproject myproject I will get the following error:
ImportError: No module named w3lib.html
Wining: It's really troublesome running Python / Scrapy on windows XP. On linux I just run pip install Scrapy and it's ok lol.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
他们似乎忘记列出 w3lib 和 simplejson。后者仅适用于 2.6 之前的 Python 版本。这是分发的安装程序,以防您没有 easy_install 和点。然后您可以使用后者之一来获取剩余的依赖项。
It appears they forgot to list w3lib and simplejson. The latter is only required for Python versions before 2.6. Here's an installer for Distribute, in case you don't have easy_install and pip. Then you can use one of the latter to get the remaining dependencies.
使用
easy_install w3lib
对我有用use
easy_install w3lib
worked for me如果您安装了 pip,在 Mac 和 Windows 上Linux:
尝试:
如果您之前已经使用 root 安装过:
If you have pip installed, on Mac & Linux:
try:
if you have installed it with root before: