--- a/src/eric7/Debugger/DebuggerInterfacePython.py Mon Nov 13 11:53:55 2023 +0100 +++ b/src/eric7/Debugger/DebuggerInterfacePython.py Tue Nov 14 16:08:32 2023 +0100 @@ -409,7 +409,10 @@ # start debugger with project specific settings debugClient = project.getDebugProperty("DEBUGCLIENT") - if not bool(debugClient) or not os.path.exists(debugClient): + if not bool(debugClient) or ( + not project.getDebugProperty("REMOTEDEBUGGER") + and not os.path.exists(debugClient) + ): debugClient = self.__determineDebugClient() redirect = (