I enter \'scrapy crawl PROJECT_NAME\' in terminal and try to run a project coded with python2 but terminal tries to use scrapy in python3 and keeps reporting error(I have sc
Just specify the python you want to run scrapy with:
scrapy
python2 -m scrapy crawl PROJECT_NAME
Or even more precise:
/path/to/python/executable/python -m scrapy crawl PROJECT_NAME