1. ホーム
  2. python

[解決済み] [Solved] Python.exeの場所をプログラムで取得する方法は?[重複している]。

2022-04-14 20:28:27

質問

基本的には、私は(外部アプリケーションから)実行するスクリプトファイルを渡すことができるように、Pythonインタプリタのハンドルを取得したいです。

どのように解決するのですか?

Linux & Windowsで動作します。

Python 3.x

>>> import sys
>>> print(sys.executable)
C:\path\to\python.exe

Python 2.x

>>> import sys
>>> print sys.executable
/usr/bin/python