--- GenericPlugins/WordCompletion/SuggestionProcessManager.py +++ GenericPlugins/WordCompletion/SuggestionProcessManager.py @@ -19,12 +19,12 @@ def __init_attributes(self, editor): from os.path import join - from sys import prefix + from sys import executable self.__editor = editor generator_script = "ScribesWordCompletionSuggestionGenerator.py" self.__cwd = self.__editor.get_current_folder(globals()) self.__executable = join(self.__cwd, "SuggestionProcess", generator_script) - self.__python_executable = join(prefix, "bin", "python") + self.__python_executable = executable return def __start(self):