ImportError:Scrapy for python 不再工作,没有名为 scrapy.cmdline 的模块

发布于 2024-11-18 14:59:04 字数 143 浏览 3 评论 0原文

运行 Scrapy 会产生错误:

ImportError: No module named scrapy.cmdline

我查看了一下,发现该模块位于正确的位置。可以通过创建新的环境变量来解决这个问题吗?

Running Scrapy yields me the error:

ImportError: No module named scrapy.cmdline

I looked and I do have that module in the correct location. Can this issue be resolved by creating a new Environment Variable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

幸福%小乖 2024-11-25 14:59:04

我在 mac os Lion 上使用 enthought 发行版工作,并且遇到了同样的问题。

在 scrapy.py 脚本文件中,问题是 #!/usr/bin/python 没有引用我想到的 python,所以尝试更改 #!行至:#!/usr/bin/env python。

并使用通常的python

I work on a mac os Lion with enthought distribution and I had the same problem.

In the scrapy.py script file, the problem is that #!/usr/bin/python does not reference my enthought python so try changing the #! line to: #!/usr/bin/env python.

and the usual python is used

风渺 2024-11-25 14:59:04

将正确的目录添加到环境变量中的 PYTHONPATH 中。

Add the correct directory to PYTHONPATH in environment variables.

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