hi , I have two different versions of python on my ubuntu machine : 2.7 and 3.4 . my question is how to tell sys.executable to use python 3.4 ?
this is what I get when I run the code :
`>>> import sys
print sys.executable
/usr/bin/python
which is python 2.7 but I want to use python 3.4
`