已尝试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
工作得很好。
已尝试重新安装,但已满足要求。
解决方案是什么?
1条答案
按热度按时间44u64gxh1#
还是不知道怎么弄的,但是我设法解决了这个问题。用
pip3 uninstall scarpy
卸载了scrapy,删除了之前为这个项目创建的文件夹,然后重新安装。现在它可以工作了。