Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install common-lisp on jupyter notebook from linux?

I had a professor whose has a web-server with common-lisp notebooks in Jupyter Notebook. I want to install it in my Linux, but I don't know how.

Any sugestion?

like image 538
Matheus Popst de Campos Avatar asked Nov 08 '22 10:11

Matheus Popst de Campos


1 Answers

I understood the question as: "How can I use jupyter-notebook for common-lisp code". If this a wrong interpretation please comment so I can delete my answer.

Kernels (Programming Languages) The Jupyter team maintains the IPython kernel since the Jupyter notebook server depends on the IPython kernel functionality. Many other languages, in addition to Python, may be used in the notebook.

The community maintains many other language kernels, and new kernels become available often. Please see the list of available kernels for additional languages and kernel installation instructions to begin using these language kernels [1].

Thus you have to look up the common-lisp kernel you want to use here and it seems like the only option available is cl-jupyter. The corresponding github project has the installation guide contained here.

As a small side note: If you are only looking for a good interactive environment to program common-lisp in have a look at emacs-slime. I have yet to find a more seamless programming environment for common-lisp.

like image 143
Sim Avatar answered Nov 10 '22 01:11

Sim