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?