Open
Description
- Install conda
- Install https://marketplace.visualstudio.com/items?itemName=ms-python.python
- Install https://marketplace.visualstudio.com/items?itemName=donjayamanne.jupyter
- Maybe restart vscode? Not sure if required
- Create a new
test.py
file and put the following in it:
#%%
import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
x = np.linspace(0, 20, 100)
plt.plot(x, np.sin(x))
plt.show()
x = np.linspace(0, 40, 100)
plt.plot(x, np.sin(x))
plt.show()
- Click on the
Run Cell
that shows up. It will let youStart a new notebook
orSelect an Existing Notebook
. Choose a new one and it should show the results on the side. - Works surprisingly well!
Metadata
Metadata
Assignees
Labels
No labels