I've two versions of Python installed. 3+ for Django and 2+ for Scrapy. I can use whatever version I want using the following method:-
py abc.py #for 2.+ use
py -3 abc.py #for 3.+ use
The problem is that when I try to make a project with Scrapy
scrapy startproject news
How can I explicitly mention or force scrapy to use 2.+ python version. Currently, it is using 3.+ version. I can confirm this because it gives me an error at a certain "twisted" package, that Scrapy uses, which is only for python 2.+
Update:-
I'm using Windows environment.
Update:-
>where.exe scrappy
C:\Python34\Scripts\scrapy.exe