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.
2 parents 3fc1575 + de38c4d commit 2f01c41Copy full SHA for 2f01c41
src/main/server.ts
@@ -71,14 +71,17 @@ class JupyterServer {
71
}
72
this._info.token = randomBytes(24).toString('hex');
73
74
+ // note: traitlets<5.0 require fully specified arguments to
75
+ // be followed by equals sign without a space; this can be
76
+ // removed once jupyter_server requires traitlets>5.0
77
this._nbServer = execFile(this._info.environment.path, [
78
'-m', 'jupyterlab',
79
'--no-browser',
80
// do not use any config file
- '--JupyterApp.config_file_name', '',
81
+ '--JupyterApp.config_file_name=""',
82
// use our token rather than any pre-configured password
- '--ServerApp.password', '',
- '--ServerApp.allow_origin', '*'
83
+ '--ServerApp.password=""',
84
+ '--ServerApp.allow_origin="*"'
85
], {
86
cwd: home,
87
env: {
0 commit comments