Skip to content

PeakPo with Jupyter

S.-H. Dan Shim edited this page Jun 19, 2022 · 3 revisions

How to add/remove a kernel in Jupyter from a conda environment

The setup below allows for the registration of the PeakPo environment in Jupyter as a kernel. You can read *.dpp files directly from Jupyter and generate plots.

How to add a kernel

source activate myenv
python -m ipykernel install --user --name myenv --display-name "Python (myenv)"

Source: https://stackoverflow.com/questions/39604271/conda-environments-not-showing-up-in-jupyter-notebook?rq=1

How to remove a kernel

jupyter kernelspec uninstall <unwanted-kernel-name>

How to list kernels

jupyter kernelspec list
Clone this wiki locally