Windows XP 上的 Scrapy 导入错误:没有名为 w3lib.html 的模块

发布于 2024-12-18 13:39:07 字数 267 浏览 0 评论 0原文

我刚刚尝试在运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

鹤舞 2024-12-25 13:39:07

他们似乎忘记列出 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.

请你别敷衍 2024-12-25 13:39:07

使用 easy_install w3lib 对我有用

use easy_install w3lib worked for me

听不够的曲调 2024-12-25 13:39:07

如果您安装了 pip,在 Mac 和 Windows 上Linux:

尝试:

pip 安装 w3lib

如果您之前已经使用 root 安装过:

sudo pip 安装 w3lib

If you have pip installed, on Mac & Linux:

try:

pip install w3lib

if you have installed it with root before:

sudo pip install w3lib

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文