Skip to main content

Registering Custom Python Environment in Jupyter Notebook

 Setting up of custom python Environment in Notebook 

  • Refer RStudio for using virutalenv

  • 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
      • conda install ipykernal
    • 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