Tips for ISD setup
Instead of running jupyter notebooks via the jupyter server, which doesn't have any python language support and autocompletion, I really recommend to use a dedicated IDE such as VSCode.
VSCode setup
Just install the "Jupyter" extension pack from Microsoft, or just type
code --install-extension ms-toolsai.jupyter
Usage in VSCode
- Open a notebook: After this, you can open your labs folder in VSCode and simply open any
*.ipynbfile directly. You can even open multiple notebooks at the same time. - Select a kernel: click on
Select Kernelat top right, choose your conda virtual env or the standard env with the latest python interpreter. - Run a cell: Choose any code cell, execute it with
Ctrl+Enter. Accept the prompt to installipykernelif you getRunning cells with 'Python 3.12.6' requires the ipykernel package. - Run all: You can define a shortcut to easily press
Run all(right click -> Configure keybinding)
Tips
- You can open dataframe in a nice table to show more details without writing python code to print a subset of it !