Maxima and Jupyter - will Homebrew work?
I have successfully installed Maxima-Jupyter on macOS using Homebrew.
brew uninstall maxima # (if you have already installed)
brew install sbcl gpg zmq gnuplot
brew edit maxima
Edit Formula/maxima.rb. Comment out "--enable-sbcl-exec",
"--enable-sbcl",
# "--enable-sbcl-exec",
Save and quit
brew install maxima -s # you need -s to compile from source
Assuming you have quicklisp installed successfully,
unzip maxima-jupyter-master.zip
cd maxima-jupyter-master
maxima
(%i1) load("load-maxima-jupyter.lisp");
(%i2) jupyter_install();
(%i3) quit();