I want to execute my scrapy crawler from cron job .
i create bash file getdata.sh where scrapy project is located with it\'s spiders
#!/bin/bash cd /
I solved this problem including PATH into bash file
#!/bin/bash cd /myfolder/crawlers/ PATH=$PATH:/usr/local/bin export PATH scrapy crawl my_spider_name