1

Microsoft 最近发布了对 SSH 的远程开发支持。

https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh

但是,在 python 中,如果单击“选择 python 解释器”。可供选择的解释器仅适用于 anaconda 中的一组 python 解释器。

可供选择的口译员位于:

~/anaconda3/*
/usr/bin/python

我在自定义位置有一个自定义 python 解释器。我的翻译在~/projects/myproject/bin/python

我们如何通过给它一个路径来配置一个远程python解释器?

注意:我已经配置setting.json

"python.pythonPath": "${workspaceFolder}/bin/python",

但它似乎并不尊重它

4

1 回答 1

0

设法使它与

  1. 更新 vscode

  2. 我的文件:

# settings.json
{
  "python.pythonPath": "/custom/bin/python"
}
# launch.json
"configurations": [
  {
    "name": "Python: Current File",
    "type": "python",
    "request": "launch",
    "program": "${file}",
    "console": "integratedTerminal",
    "pythonPath": "${config:python.pythonPath}"
  },
...
  1. 重启vscode

  2. F1 -> 选择解释器

于 2019-06-05T18:41:49.117 回答