I'm trying to get Python 3.5 to run in my terminal. I made a script using idle that printed out the version of python in use to try to solve my problem. The script looked like this:
import sys
print(sys.version_info)
When I ran it in IDLE, I got the following output:
sys.version_info(major=3, minor=5, micro=2, releaselevel='final', serial=0)
When I ran it in terminal, I got the following output instead:
sys.version_info(major=2, minor=7, micro=10, releaselevel='final', serial=0)
I want to be able to run my scripts in terminal because I want to be able to access files and use pip. If you know how I can do one or both of these things in the IDLE shell, or you know how to update terminal so I can do this.