简体   繁体   中英

Change Interpreter in Jupyter notebook

I am trying to change the interpreter path of my Jupyter notebook environment to the interpreter path I am using with PyCharm.

When I execute the following code with Jupyter notebook I am getting the python installation within the Anaconda main folder and not the one I am using with PyCharm.

import sys
print(sys.executable)

With which command I can change the path to the other python installation I am using with PyCharm?

I believe what you are looking for is how to change the Kernel you are running. If you go to the Kernel menu in Jupyter, you will see the option to change kernels.

在此处输入图像描述

If you want to add a new kernel from a conda environment, terminate jupyter, activate the environment you want to add a kernel for, and then run this command (requires conda install ipykernel -- thx @shad):

python -m ipykernel install --user --name <kernel_name> --display-name "<Name_to_display>"

Make sure to replace <kernel_name> and <Name_to_display> to the name of your environment. Also, this requires you to conda install ipykernel (thanks @shad).

Once you installed the kernel, you can change to it through the above menu and even through this code snippet from a Jupyter cell:

%%javascript
Jupyter.notebook.session.restart({kernel_name: '<kernel_name>'})

Activate first the env you want to use:

conda activate myenv

Then start jupyter afterwards:

jupyter notebook /path/to/your/dir

You can also use the following:

conda activate base 

then check the location of the jupyter using

type jupyter

if it is located in

~/anaconda3/bin/jupyter

then you are good to go. After that, you can use the jupyter The one I use with my ssh-tunneling between my host and server machines is:

jupyter notebook --no-browser --port=1234

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM