Add Conda Environment to Jupyter Notebook

Shashank Lipate
Mar 21, 2021

--

Jupyter Notebook is useful for developing long code and quick testing of it. So it is necessity to have environment in the notebook.

Step 1.

Create environment and install all packages with pip or conda.

Step 2.

Install pykernal package with following command inside the environment.

conda install -c anaconda ipykernel

Step 3.

Copy the following command. change the environment name here.

python -m ipykernel install — user — name=<ENV Name>

Thats it. Open Jupyter Notebook and you can see the environment there.

HURRAY

Connect with me on LinkedIN: Shashank Lipate

Regards and wishes,

--

--