Reputation: 83
is there a way to use JupyterLab in VS Code? I know that VS Code provides the Jupyter Notebook extension. However, I need to connect to another server remotely......
Any guidance will be appreciated!
Upvotes: 8
Views: 35403
Reputation: 9219
You can offload intensive computation in a Jupyter Notebook to other computers by connecting to a remote Jupyter server. Once connected, code cells run on the remote server rather than the local computer.
To connect to a remote Jupyter server:
For guidance about securing a notebook server, refer to the Jupyter documentation.
Upvotes: 7