📝 Editor Setup
We will use jupyter lab to edit code
Install jupyterlab
python -m pip install jupyterlab
python3 -m pip install jupyterlab
Then add the virtual environment to Jupyter
ipython kernel install --user --name=venv
Then run jupyter lab
jupyter lab
Your browser will open up to a new page, then click on the tile that says venv
under the Notebooks section
Save the notebook, and rename to mynotebook.ipynb
Test your setup
In the little box with your cursor, type
print("Hello")
Then press shift
and enter
keys