Skip to main content
Registering Custom Python Environment in Jupyter Notebook
Setting up of custom python Environment in Notebook
- Below is the process to setup using conda
- from a terminal in Jupiter ,create and activate a new conda environment
- conda create -n <env-name>
- conda activate <env-name> (Switch to bash to enable conda)
- in that new activated environment , install package ipykernel
- Register conda environment
- python -m ipykernal install --name python-env --display-name "Conda Python Env" --user
- Refresh the launcher to see new kernel which you created in above process
Comments
Post a Comment