在Visual Studio中使用Vagrant设置远程Python解释器

时间:2019-06-20 07:52:47

标签: python visual-studio vagrant vagrantfile vagrant-provision

我在Visual Studio中安装了Python项目,我想通过连接到远程python解释器来运行python的鼻子测试 通过流浪汉。我的项目目录中有一个无业游民的文件。我无法将远程python解释器添加到我的项目中。

我在Visual Studio IDE中安装了一个Vagrant插件。

我添加了如下的工作区设置:

{
"python.pythonPath": "C:\\Python27\\python.exe",
  "python.autoComplete.extraPaths": [
    "${env.SPARK_HOME}\\python",
    "${env.SPARK_HOME}\\python\\pyspark"
  ],
  "python.linting.pylintEnabled": true,
  "python.linting.enabled": true,
  "python.venvPath": "C:/Users/Sricharan/Attw/python-proj/Vagrantfile"
}

我添加了如下用户设置:

{
  "editor.tabSize": 4,
  "editor.insertSpaces": true,
  "editor.detectIndentation": false,
  "editor.formatOnSave": true,
  "python.pythonPath": "python"
}

请帮助。

0 个答案:

没有答案