Могу ли я использовать python.dll вместо .exe для VSCode Language Server? - PullRequest
0 голосов
/ 30 ноября 2018

Я пытаюсь настроить VSCode для использования встроенной версии Python3.4 (Windows), которая является частью программы CAD под названием Siemens NX (ранее Unigraphics).Встроенный Python содержит файлы API программы CAD (.pyd) в главном каталоге Python, смежном с Python34.dll.Однако VSCode выдает мне ошибку, что он не может найти переводчик.

Возможно ли даже использовать python.dll с VSCode Language Server для автозаполнения / intellisense?

Этиэто настройки.

{
  // Path to Python, you can use a custom version of Python by modifying this setting to include the full path.
  "python.pythonPath": "N:\\networkdrive\\vnx11.0.64\\NXBIN\\python\\python34.dll",

  // Activate Python Environment in Terminal created using the Extension.
  "python.terminal.activateEnvironment": false,

  // List of paths to libraries and the like that need to be imported by auto complete engine. E.g. when using Google App SDK, the paths are not in system path, hence need to be added into this list.
  "python.autoComplete.extraPaths": ["N:\\networkdrive\\vnx11.0.64\\NXBIN\\python\\Python34.zip"],

  // Comma delimited list of modules preloaded to speed up Auto Complete (e.g. add Numpy, Pandas, etc, items slow to load when autocompleting).
  // turned off the following for language server: "python.autoComplete.preloadModules": ["NXOpen"],

  // Turn off Jedi to take advantage of the new language server
  "python.jediEnabled": false 
}
...