Python 如何確認 Windows 作業系統上所有的 Runtime 以及指定 Runtime 執行 Script


  1. 說明

logo

說明

安裝 Python 後,會在以下路徑 C:\Windows 加入一個 py.exe

可以透過這個程式來執行 python scripts,並且可以透過 --list 或者是 -3.9, -2.7 的方式來指定 scripts 所要使用的 python runtimes。

而如果想要確認這些 runtime 所在的路徑,可以搭配 -c 來直接執行 script (不需要透過 .py file) 來顯示。

py -3.9-32 -c "import sys; print(sys.executable)"
# C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python39_86\python.exe