1. Compile the JODIN interpreter and install the JODIN package.
make -C ./src/interpreter/
2. Add JODIN directory to PATH.
3. Activate the virtual environment by executing the command printed by the following command.
poetry --directory=./src/ipy_kernel env activate
4. Install the dependencies.
poetry --directory=./src/ipy_kernel install --compile
5. Tnstall the JODIN kernel.
poetry --directory=./src/ipy_kernel run jupyter kernelspec install ./src/jodin --name=jodin --user
To start the console front-end execute the following command:
poetry -C=./src/ipy_kernel run jupyter console --kernel jodin
To start the notebook front-end execute the following command, then select the JODIN kernel from Kernel > Change Kernel.
poetry -C=./src/ipy_kernel run jupyter notebook ../../examples/demo.ipynb