Dani
Dani

Reputation: 799

Jupyter Notebook style in PyCharm

I am working with python notebook in PyCharm. After seeing this video, I updated my professional PyCharm into 2021.3 version.

I opened a new notebook, and got a different UI than the one shown in the video, which looks almost exactly as a Jupyter notebook:

My notebook

Is there a way to change the style of the notebook so it will look like a Jupyter notebook (like what shown in the video)? Jupyter notebook

In addition, when I am running a cell I get the message Variables are not available when I am trying to look on the variables. Is there a way to fix it?

Upvotes: 0

Views: 1416

Answers (1)

Yannis P.
Yannis P.

Reputation: 2765

You need to go to File>Settings>Color Scheme and choose something bright.

Below I am showing you the Classic Light color scheme enter image description here

On the Jupyter part of the question at the bottom part of your screen you should see a Jupyter tab enter image description here

After selecting the tab you should normally see the active variables, as shown below:

enter image description here

Upvotes: 1

Related Questions