How can I fix this and make sure that I'm installing Scipy, Matplotlib, GDAL, and Numpy in the correct python version if my QGIS 3.8 uses Python 3.6 and my Macbook Terminal is using Python 2.7? I'm trying to fix this for the SCP plugin.
-
Hi Thank you so much - I realized it too that I have to write Python 3 install _________ when I want to specify something in the terminal. I found the answer on this link stackoverflow.com/questions/42502614/…Johnny– Johnny2020年11月19日 23:16:24 +00:00Commented Nov 19, 2020 at 23:16
1 Answer 1
Try:
python3 --version
or
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3 --version
answered Nov 20, 2020 at 0:21
lang-py