We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e73140 commit cf799e9Copy full SHA for cf799e9
src/functions/python.ts
@@ -16,7 +16,7 @@ export function virtualEnvCmd(cwd: string, venvDir: string): { command: string;
16
process.platform === "win32" ? ["Scripts", "activate.bat"] : ["bin", "activate"];
17
const venvActivate = path.join(cwd, venvDir, ...activateScriptPath);
18
return {
19
- command: process.platform === "win32" ? venvActivate : "source",
+ command: process.platform === "win32" ? venvActivate : ".",
20
args: [process.platform === "win32" ? "" : venvActivate],
21
};
22
}
0 commit comments