We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8c10d commit 69234e2Copy full SHA for 69234e2
src/julia/tools.py
@@ -165,7 +165,8 @@ def julia_py_executable():
165
# if no candidate in an alternate scheme, try the standard install location
166
# see https://docs.python.org/3/install/index.html#alternate-installation
167
scripts_paths = [
168
- sysconfig.get_path("scripts", scheme) for scheme in sysconfig.get_scheme_names()
+ *[ os.path.join(pypath, "bin") for pypath in os.environ.get("PYTHONPATH").split(os.pathsep) ],
169
+ *[sysconfig.get_path("scripts", scheme) for scheme in sysconfig.get_scheme_names()],
170
]
171
scripts_paths.append(sysconfig.get_path("scripts"))
172
0 commit comments