I\'m just starting to learn Python and did search around a little, so forgive me if this has been asked and answered.
When running scripts through the command line/t
Sounds like you have python 2 and 3 installed and your pythonpath is pointed at python 2, so unless specified it uses that version. If you are using python I would suggest setting up a virtual environment (virtualenv) for each project, which means you could run whatever version you'd like in that project and keep all dependencies contained.