From bc71fd8515b63004b1da011748246f12aa4cba92 Mon Sep 17 00:00:00 2001 From: Brett Jia Date: Sun, 26 May 2024 01:29:46 -0400 Subject: [PATCH] server: print python interpreter path (#1484) --- server/python/plugin_remote.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/python/plugin_remote.py b/server/python/plugin_remote.py index 9a020e73d..414473c96 100644 --- a/server/python/plugin_remote.py +++ b/server/python/plugin_remote.py @@ -557,6 +557,7 @@ class PluginRemote: python_version = 'python%s' % str( sys.version_info[0])+"."+str(sys.version_info[1]) print('python version:', python_version) + print('interpreter:', sys.executable) python_versioned_directory = '%s-%s-%s' % ( python_version, platform.system(), platform.machine())