scrapy 虚拟环境中出现临时爬网错误

rnmwe5a2  于 2022-11-09  发布在  其他
关注(0)|答案(1)|浏览(98)

已尝试Scrapy tutorial,但无法运行搜索脚本:
scrapy crawl quotes
我得到的错误:
-bash: /home/szendrei/.virtualenvs/scrapy-projects/bin/scrapy: No such file or directory
我在一个虚拟环境下(用virtualenvwrapper创建),Python版本3.8。在虚拟环境中安装了Scrapy和pip3。which scrapy什么也没显示,pip3 show scrapy说:

Name: Scrapy
Version: 2.7.1
Summary: A high-level Web Crawling and Web Scraping framework
Home-page: https://scrapy.org
Author: Scrapy developers
Author-email:
License: BSD
Location: /home/szendrei/.local/lib/python3.8/site-packages
Requires: cryptography, cssselect, itemadapter, itemloaders, lxml, packaging, parsel, protego, PyDispatcher, pyOpenSSL, queuelib, service-identity, setuptools, tldextract, Twisted, w3lib, zope.interface
Required-by:

scrapy startproject tutorial工作得很好。
已尝试重新安装,但已满足要求。
解决方案是什么?

44u64gxh

44u64gxh1#

还是不知道怎么弄的,但是我设法解决了这个问题。用pip3 uninstall scarpy卸载了scrapy,删除了之前为这个项目创建的文件夹,然后重新安装。现在它可以工作了。

相关问题