我正在开发使用Python 2.7构建的Scrapy项目。服务器上还有一些其他项目(不是Scrapy),其中一些是使用Python 3.5构建的。
现在我遇到了一种情况,我必须在我的项目中设置fake-user-agent,以便通过网络抓取一些数据。
我使用pip install scrapy-fake-useragent
安装了假用户代理
但看起来它是为Python 3.5版安装的。
因为当我尝试再次安装时,它说:
Requirement already satisfied: scrapy-fake-useragent in /usr/local/lib/python3.5/dist-packages
Requirement already satisfied: fake-useragent in /usr/local/lib/python3.5/dist-packages (from scrapy-fake-useragent)
现在如何为我需要的项目安装它?我在网上搜索解决方案,但找不到任何有用的东西。
提前多多感谢。