我可以将远程 Python 解释器(通过 SSH)添加到本地 VSCode 环境(即混合 local/remote SSH 设置)吗?
Can I add a remote Python interpreter (via SSH) to a local VSCode environment (i.e. a hybrid local/remote SSH setup)?
我 VSCode 设置了“远程 - SSH”扩展,我可以 运行 本地 VSCode window 作为完整的远程环境。真的很酷
但是,我还希望能够设置一个 local VSCode 环境,从我的 local[=26= 加载文件] 文件系统,但 运行 将它们放在 远程 Python 解释器上(通过 SSH 连接)。
我希望我可以 运行 使用远程内核的所有常规交互 Python REPL 内容(例如显示变量等)。似乎我应该能够以某种方式添加一个远程内核,然后通过“Python: Select 解释器”select 它,但我不知道如何。
过去我可以使用“remote_ikernel”包在 JupyterLab 中配置这样的设置。
这在 VSCode 中可行吗?我找到了大量关于完整远程设置的文档,但没有找到关于这种混合设置的信息。
我找到了一个相关的错误报告,其中讨论了混合使用本地和远程 文件系统(不是解释器)。
我怀疑它为文件系统描述的相同困难可能是本地文件不能轻易输入远程解释器的类似原因。
全帖在此供参考:
https://github.com/microsoft/vscode-remote-release/issues/706
具体报价:
Having a mixed workspace would require that a workspace extension can be active both locally and remotely. Currently an extension can only be active once, either locally or remotely. So this is currently not possible and we have no plans to support this.
The recommendation is to have separate windows open for the local and remote workspace.
听起来这是一项目前不受支持的功能。
我 VSCode 设置了“远程 - SSH”扩展,我可以 运行 本地 VSCode window 作为完整的远程环境。真的很酷
但是,我还希望能够设置一个 local VSCode 环境,从我的 local[=26= 加载文件] 文件系统,但 运行 将它们放在 远程 Python 解释器上(通过 SSH 连接)。
我希望我可以 运行 使用远程内核的所有常规交互 Python REPL 内容(例如显示变量等)。似乎我应该能够以某种方式添加一个远程内核,然后通过“Python: Select 解释器”select 它,但我不知道如何。
过去我可以使用“remote_ikernel”包在 JupyterLab 中配置这样的设置。
这在 VSCode 中可行吗?我找到了大量关于完整远程设置的文档,但没有找到关于这种混合设置的信息。
我找到了一个相关的错误报告,其中讨论了混合使用本地和远程 文件系统(不是解释器)。
我怀疑它为文件系统描述的相同困难可能是本地文件不能轻易输入远程解释器的类似原因。
全帖在此供参考:
https://github.com/microsoft/vscode-remote-release/issues/706
具体报价:
Having a mixed workspace would require that a workspace extension can be active both locally and remotely. Currently an extension can only be active once, either locally or remotely. So this is currently not possible and we have no plans to support this. The recommendation is to have separate windows open for the local and remote workspace.
听起来这是一项目前不受支持的功能。