We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 223a9f8 commit 292c010Copy full SHA for 292c010
1 file changed
src/client/common/installer.ts
@@ -155,10 +155,10 @@ export class Installer {
155
let installScript = installArgs.join(' ');
156
if (installArgs[0] === '-m') {
157
if (pythonPath.indexOf(' ') >= 0) {
158
- installScript = `"${pythonPath}" -m ${installScript}`;
+ installScript = `"${pythonPath}" ${installScript}`;
159
}
160
else {
161
- installScript = `${pythonPath} -m ${installScript}`;
+ installScript = `${pythonPath} ${installScript}`;
162
163
164
Installer.terminal.sendText(installScript);
0 commit comments