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",
但它似乎并不尊重
答案 0 :(得分:0)
设法使其与之合作
更新vscode
我的文件:
# 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}"
},
...
重新启动vscode
F1->选择解释器