remark: ipympl-0.6.2 seems to have no interactive feature working when under vscode-python
See original GitHub issueplaying on latest Jupyter, with lates ipymml, with VScode-Python of today (new version next week):
- ipympl does render,
- but interactvity seems not working.
code tried:
%matplotlib widget
# Testing matplotlib interactions with a simple plot
import matplotlib.pyplot as plt
import numpy as np
# warning ; you need to launch a second time %matplotlib widget, if after a %matplotlib inline
%matplotlib widget
fig = plt.figure() #plt.figure(1)
plt.plot(np.sin(np.linspace(0, 30, 100)))
plt.show()
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
How do I find/excute Python Interactive Mode in Visual Studio ...
When editing Python code, select something and press Shift + Enter . This will open the interactive window and run your selection as...
Read more >Working with Jupyter code cells in the Python Interactive window
To use the window with a file, use the Jupyter: Run Current File in Python Interactive Window command from the Command Palette.
Read more >VSCode's Python Interactive mode is AMAZING! - YouTube
I've gone from serial Jupyter Notebook user to someone that almost never uses them and it's all thanks to VSCode's interactive mode for ......
Read more >VS Code Debugger not working for python - Microsoft Q&A
It seems when I do Run->"start Debugging' no command comes to terminal. Any VS Code log file that I can look at to...
Read more >How to Set Up Visual Studio Code in 2022 (The Easy Way)
To work with Python inside VS Code, we need to use the Python extension, which brings many useful features, such as code completion...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Great, let’s see what the vscode-jupyter people can do about this. I created an issue at https://github.com/microsoft/vscode-jupyter/issues/8635.
Thanks!