如何在远程开发中使用远程python解释器-VSCode中的SSH

时间:2019-05-03 18:09:42

标签: visual-studio-code vscode-remote

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",

但它似乎并不尊重

1 个答案:

答案 0 :(得分: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->选择解释器