Skip to content

Commit

Permalink
Merge pull request #259 from mbektas/fix_win_launch
Browse files Browse the repository at this point in the history
fix jlab launch issue on windows
  • Loading branch information
mbektas authored Sep 28, 2021
2 parents 35f51a4 + 7c9634b commit 0f84716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class JupyterServer {
PATH_ENV = `${envPath}:${process.env['PATH']}`;
}

this._nbServer = execFile(this._info.environment.path, ['-m', 'jupyter', 'lab', '--no-browser', '--ServerApp.password', '', '--ServerApp.disable_check_xsrf', 'True', '--ServerApp.allow_origin', '*'], {
this._nbServer = execFile(this._info.environment.path, ['-m', 'jupyterlab', '--no-browser', '--ServerApp.password', '', '--ServerApp.disable_check_xsrf', 'True', '--ServerApp.allow_origin', '*'], {
cwd: home,
env: {
PATH: PATH_ENV
Expand Down

0 comments on commit 0f84716

Please sign in to comment.