clj-python / libpython-clj

Python bindings for Clojure
Eclipse Public License 2.0
1.08k stars 68 forks source link

Added support for anaconda python under windows #67

Closed orolle closed 4 years ago

orolle commented 4 years ago

Allows to use libpython-clj in windows with anacondas python environment. Major challange was to be able to load native windows dlls for python modules. Therefore the PATH environment of anaconda had to be extracted and then loaded inside libpython-clj PATH environment variable, so that libpython-clj could find the right windows dlls on the PATH for its python modules (numpy etc.). Requires a little bit manual setup for (initialize! ...). Documentation added.

cnuernber commented 4 years ago

This is a big help, thank you!