Raphael Roth
Raphael Roth

Reputation: 27373

Difference between Jupyter Server and Python interpreter in DataSpell

I work with Jupyter notebooks in Jetbrain's DataSpell. In two places I can configure a python interpreter. What is the difference between

  1. Python Interpreter (lower right, in my case Conda env "mpd")
  2. Jupyter-Server/ Managed Server (upper right, in my case WSL)

I think this should be the same, not?

enter image description here

Upvotes: 1

Views: 208

Answers (1)

Alexander Klimenko
Alexander Klimenko

Reputation: 1695

In the lower right corner, you see the default Python interpreter configured in your system to run your python scrips. E.g. you have a *.py file in your DataSpell workspace.

The one shown under the Jupyter configuration is the one which will be used for running your notebooks.

If you run Jupyter locally and have just one interpreter, it will be the same for both. However, you can have multiple Python environments in your system and use one for Jupyter and another for your local scripts.

Upvotes: 1

Related Questions