diff --git a/src/contributes/commandsBase.ts b/src/contributes/commandsBase.ts index 3dffe10..0bb784e 100644 --- a/src/contributes/commandsBase.ts +++ b/src/contributes/commandsBase.ts @@ -63,7 +63,7 @@ export function checkDevChatDependency(pythonCommand: string): boolean { try { // Check if DevChat is installed const pipxDevChat = path.join(pipxBinPath!, 'devchat'); - runCommand(`${pipxDevChat} --help`); + runCommand(`"${pipxDevChat}" --help`); UiUtilWrapper.updateConfiguration('DevChat', 'DevChatPath', pipxDevChat); const error_status = `DevChat has installed.`;