Install GraalVM
Install clojure
Examples assume GraalVM's
bin/
folder has been added to$PATH
Install GraalVM
's native-image
utility. (documentation)
gu install native-image
Install maven
brew install maven
Install Python
Install Pip(?)
Use dependencies in a clojure
project's deps.edn
file
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
cnuernber/libpython-clj {:mvn/version "1.36"}}}
Install Python libraries, in project folder...?
pip3 install seaborn
pip3 install matplotlib
Use python libraries... TBD
(ns example.core
(:require [libpython-clj.require :refer [require-python]]
[libpython-clj.python :as py :refer [py. py.. py.-]]))