Before this, I was doing data analysis using Jupyter Notebook in Anaconda. Then, I stumbled upon a tutorial that used Jupyter in VSCode. I thought it would be easier to write code in VSCode than in Anaconda, so I wrote this tutorial to share the process since it only requires three steps.
Before installing Jupyter in VSCode, make sure you have:
VSCode installed
– You can download it from Visual Studio Code.Python installed
– Get it from python.org and make sure to add it to your system’s PATH.VSCode
.Extensions Marketplace
.Jupyter
.Install
to add the extension.VSCode
.File > New File
..ipynb
extension (for example, my_notebook.ipynb
)..ipynb
file in VSCode.Run Cell
button (looks like a play button) to execute a cell.Jupyter interactive window
for more flexibility.That’s it! Now you have Jupyter Notebook running inside VSCode. 🚀