Reputation: 27373
I work with Jupyter notebooks in Jetbrain's DataSpell. In two places I can configure a python interpreter. What is the difference between
I think this should be the same, not?
Upvotes: 1
Views: 208
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