python - Fatal Error when launching scrapyd in terminal -
i installed scrapyd on ubuntu 14.04 , after installation, typed "scrapyd" command line , got:
failed load application: no module named txweb
i used both general , ubuntu specific installations , neither seem work. background, decided use scrapyd after having created project ran multiple spiders not able pipeline scraped data 2 different tables. looked @ other posts this one, seem addressing older versions of scrapyd won't relevant anymore.
can show me how started scrapyd, because information provided in docs doesn't seem working me, thanks.
although docs has apt-get ... pip better way install scrapy (never failed me)
sudo pip install scrapyd
works me , scrapyd
doesn't give errors.
when install apt-get - twisted may not getting installed, pip takes care of that.
try uninstalling apt-get scrapyd first, , use pip install it
sudo apt-get purge scrapyd sudo pip install scrapyd
-------------- update ------------
answering next question in comment ...
if want run scrapyd-deploy
need install package scrapy-client
not installed along scrapy
. mentioned in docs - http://scrapyd.readthedocs.org/en/latest/deploy.html
you can install using sudo pip install scrapyd-client
Comments
Post a Comment