VSCode“ Python:选择解释器”添加自定义路径

时间:2019-10-22 07:03:30

标签: python visual-studio-code

我正在尝试运行var spaces = 0; var height = 4; while(height > 0) { // repeat * symbol (not supported by internet explorer) easily replacable with a loop // decrease height for next line with one less *, increate spaces for next line var str = "*".repeat(height--); var line = " ".repeat(spaces++) + str; // replace with html write for your exmaple console.log(line); } //output: // **** // *** // ** // * 可执行文件,该可执行文件是应用程序(虚幻引擎)的插件。当我执行python并执行CTRL + ALT + P时,仅显示系统安装的python解释器和虚拟env。如何添加搜索路径?

1 个答案:

答案 0 :(得分:1)

您可以在工作区的 settings.json 文件中添加python.pythonPath设置。

来自Manually specify an interpreter

  

如果VS Code没有自动找到您想要的解释器   使用时,您可以在“工作区设置”中手动设置其路径   settings.json个文件。使用以下任何条目,您可以   只需将该行添加为其他现有设置的兄弟即可。)

例如,在 .vscode / settings.json 中:

{
    "python.pythonPath": "/path/to/your/custom/python"
}

我建议在设置pythonPath之后重新加载VS Code。如果可行,每次打开工作区时,它将自动使用该Python解释器。