I have quite a few versions of python installed (running macOS). I installed scrapy with pip install scrapy, and it succeeded. When I use it e.g.
scrapy startproject newProject I see ModuleNotFoundError: No module named 'six', indicating that I need to install that module (six).
Note: I could easily fix the specific error by installing six for all versions of python installed, but solving that problem isn't what I'm trying to work out here.
Specifically what I'm after here is how to know what version of python a command line utility is using when it runs?
python -Vlearn more: stackoverflow.com/questions/8917885/…python -Vbut didn't know for sure if python CLI programs (like scrapy) would always default to that python version given withpython -V. If it's as simple as that, please make it an answerpython -V .. 2.7andpython3 -V .. 3.9. Do you know how I can makescrapy(terminal) commands run on python 3.9?