Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

scrapyd-client command not found

I'd just installed the scrapyd-client(1.1.0) in a virtualenv, and run command 'scrapyd-deploy' successfully, but when I run 'scrapyd-client', the terminal said: command not found: scrapyd-client.

According to the readme file(https://github.com/scrapy/scrapyd-client), there should be a 'scrapyd-client' command.

I had checked the path '/lib/python2.7/site-packages/scrapyd-client', only 'scrapyd-deploy' in the folder.

Is the command 'scrapyd-client' being removed for now?

like image 509
dropax Avatar asked Aug 18 '17 07:08

dropax


1 Answers

Create a fresh environment and install scrapyd-client first using below

pip install git+https://github.com/scrapy/scrapyd-client

And it should work. I was able to get it

$ which scrapyd-client
/Users/tarun.lalwani/.virtualenvs/sclient/bin/scrapyd-client

The package on pip may not be the latest one

like image 165
Tarun Lalwani Avatar answered Oct 12 '22 04:10

Tarun Lalwani