Skip to content Skip to sidebar Skip to footer

Using Python Launcher For Windows To Select A Binary In The Scripts Directory

Python launcher for Windows can find Python installations and select a particular version of the interpreter to run: c:/>py -3.4 Is it possible to select some other binary from

Solution 1:

I've wondered this too, but PEP 397 says that it's for choosing the right python executable, and doesn't mention anything about any binaries that may be included with installed packages in the python path.

https://www.python.org/dev/peps/pep-0397/

The only way I've solved this is through virtual environments, like you mentioned.

Post a Comment for "Using Python Launcher For Windows To Select A Binary In The Scripts Directory"