So, I was trying to write a Python script that utilized subprocess
to call another Python script in the same directory. This was all going well until an import statement within the second script was reached of a Python 3-only library, and since the script was opened using subprocess
, which in turn uses Python 2, an ImportError
occurred.
How can I force subprocess
, specifically Popen()
, to use Python 3 to open the script? There does not seem to be advice on this online.
Edit
While I always default to posting MWEs, for this question I believed it was unnecessary, but at any rate s soon as I proceeded to post it, it occurred to me to use 'python3' instead of just 'python',
stream = subprocess.Popen(['python3', 'app.py'])
and now the app works. What is strange is that I have only one version of Python installed by myself (3.7), and python
redirects to python3
, so it is strange I had to manually specify python3
.