My main script, main.py runs in python3. within it, I want to launch another script in some specified version of python.
import subprocess
pysh="/data/data/org.qpython.qpy/files/bin/qpython-android5.sh"
subprocess.call([pysh,'filetext.py'])
Question:
How can I use subprocess to open filetext.py in python2.x or 3.x interchangeably?
I have tried:
I have tried inputting several different arguments to no avail, such as:
os.system('python -2 -m filetext.txt')
or
subprocess.call(['py -2 filetext.txt'])
or
subprocess.call(['C:/Python27/python.exe filetext.txt'])
Any help would be immensely appreciated.
When I try almost the same thing, it seems to work as follows:
When called from python3 this prints 2.7.5. This will depend of course on if the version of python you want to use is on the PATH, and if not, calling the binary with the full path.
Not sure if it's just a typo here, but I notice you said you wanted to run filetext.py, but you're passing filetext.txt in your examples.
If this doesn't work, I'd have to know more -- you say it doesn't work, but what exactly happens?