You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Python3 executable path is hardcoded to "python3". I propose we allow the executable to be specified via :python-executable in py/initialize!. On my system, Python3.6 always gets picked up first even though Python3.7 is available because Python3.6 is my current system alternative.
This change should also allow use of Python virtual environments.
The text was updated successfully, but these errors were encountered:
I try to get libpython-clj work with anaconda on windows. The windows PATH environment variable for clojure.java.shell/sh is handled a little bit different compared to Linux & Mac. Thus the hardcoded "python3" makes it impossible to execute anything with clojure.java.shell/sh. Being able to parameterize the python-executable would work around windows specifics.
Currently the Python3 executable path is hardcoded to
"python3"
. I propose we allow the executable to be specified via:python-executable
inpy/initialize!
. On my system, Python3.6 always gets picked up first even though Python3.7 is available because Python3.6 is my current system alternative.This change should also allow use of Python virtual environments.
The text was updated successfully, but these errors were encountered: