--- LanguagePlugins/PythonErrorChecker/ExternalProcessStarter.py +++ LanguagePlugins/PythonErrorChecker/ExternalProcessStarter.py @@ -18,10 +18,10 @@ def __init_attributes(self, editor): from os.path import join - from sys import prefix + from sys import executable self.__editor = editor self.__cwd = self.__editor.get_current_folder(globals()) - self.__executable = join(self.__cwd, "ErrorCheckerProcess", "ScribesPythonErrorChecker.py") + self.__executable = executable self.__python_executable = join(prefix, "bin", "python") return