According to http://omz-software.com/pythonista/docs/ios/urlscheme.html, we can use "version=[2|3]" to use a specific interpreter for running a script. And when I run Check.py, it seems ok, but if I change to "version=3", Check.py doesn't call HelloWorld.py at all whithout any outputs.
HelloWorld.py:
!python3
coding: utf-8
print('Hello World')
Check.py: import webbrowser webbrowser.open('pythonista3://HelloWorld.py?action=run&version=2')
According to http://omz-software.com/pythonista/docs/ios/urlscheme.html, we can use "version=[2|3]" to use a specific interpreter for running a script. And when I run Check.py, it seems ok, but if I change to "version=3", Check.py doesn't call HelloWorld.py at all whithout any outputs.