使用 VSCode 连接到 Jupyter 实例
Connecting to Jupyter Instance with VSCode
我有一个 运行 Google 深度学习 VM,我设置了一个 SSH 隧道,当我导航到 http://localhost:8080 时,我连接到 运行 Jupyter实验室实例。 运行 命令 sudo service jupyter status
告诉我服务 运行 正确。
现在,我想使用 Visual Studio 代码连接到 Jupyter 实例。我尝试了 [Ctrl]+[Shift]+[P] 和 "Python: Specify Jupyter server URI",并在结果提示中输入了 http://localhost:8080。但是,我收到一条错误消息:
Failed to connect to remote Jupyter notebook.
Check that the Jupyter Server URI setting has a valid running server specified.
http://localhost:8080/
Error: Failed to connect to password protected server. Check that password is correct.
不幸的是,documentation does not say very much。
有没有人有连接 VSCode 到远程服务器的经验?谢谢。
显然,您必须设置密码。
我按照说明 here 创建了一个散列密码。然后我编辑了 jupyter_notebook_config.py
文件并编辑了行 c.NotebookApp.password = '<my_super_secret_hash>'
。最终,我可以连接 VSCode。
我有一个 运行 Google 深度学习 VM,我设置了一个 SSH 隧道,当我导航到 http://localhost:8080 时,我连接到 运行 Jupyter实验室实例。 运行 命令 sudo service jupyter status
告诉我服务 运行 正确。
现在,我想使用 Visual Studio 代码连接到 Jupyter 实例。我尝试了 [Ctrl]+[Shift]+[P] 和 "Python: Specify Jupyter server URI",并在结果提示中输入了 http://localhost:8080。但是,我收到一条错误消息:
Failed to connect to remote Jupyter notebook.
Check that the Jupyter Server URI setting has a valid running server specified.
http://localhost:8080/
Error: Failed to connect to password protected server. Check that password is correct.
不幸的是,documentation does not say very much。
有没有人有连接 VSCode 到远程服务器的经验?谢谢。
显然,您必须设置密码。
我按照说明 here 创建了一个散列密码。然后我编辑了 jupyter_notebook_config.py
文件并编辑了行 c.NotebookApp.password = '<my_super_secret_hash>'
。最终,我可以连接 VSCode。