Skip to content

Commit 292c010

Browse files
committed
fx #54
1 parent 223a9f8 commit 292c010

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/client/common/installer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ export class Installer {
155155
let installScript = installArgs.join(' ');
156156
if (installArgs[0] === '-m') {
157157
if (pythonPath.indexOf(' ') >= 0) {
158-
installScript = `"${pythonPath}" -m ${installScript}`;
158+
installScript = `"${pythonPath}" ${installScript}`;
159159
}
160160
else {
161-
installScript = `${pythonPath} -m ${installScript}`;
161+
installScript = `${pythonPath} ${installScript}`;
162162
}
163163
}
164164
Installer.terminal.sendText(installScript);

0 commit comments

Comments
 (0)