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?