Display exact versions of interpreters #101
Replies: 2 comments 3 replies
-
What is the motivation of wanting to have all of this information for all Python interpreters instead of a specific interpreter. E.g. why isn't A key reason I'm asking is as of right now the Launcher doesn't need to run any Python code or do anything with its output. And my experience with the Python extension for VS Code has taught me that plenty of people have custom Python interpreters that spew out a ton of "extra" stuff when launched, which means this unfortunately wouldn't be as simple as simply reading the stdout of executing the |
Beta Was this translation helpful? Give feedback.
-
Parses the file name, e.g.
Either that or a local socket to ferry the information across. |
Beta Was this translation helpful? Give feedback.
-
Sometimes it's handy to know the minor version of the python, I find would be very useful if the
--version
would display not just the major version, but also the version data in a third column:For example in the above case the following two values taken from
sys.version
:Beta Was this translation helpful? Give feedback.
All reactions