Yaroslav Hladkyi
Yaroslav Hladkyi

Reputation: 335

Interactive python 3d plot in jupyter notebook within VSCode

When I use jupyter notebook in Chrome, I had the opportunity to show interactive 3d plots, like this: enter image description here

Now I would like to see the same result in the VSCode. Are there any solutions to this thing?

The same code in the VSCode: enter image description here

Upvotes: 9

Views: 10909

Answers (1)

ThibautV
ThibautV

Reputation: 439

You should use %matplotlib widget instead of %matplotlib notebook.

Upvotes: 6

Related Questions