You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/app.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -415,7 +415,7 @@ class JupyterApplication implements IApplication, IStatefulService {
415
415
constdialog=newBrowserWindow({
416
416
title: 'Set Python Environment',
417
417
width: 600,
418
-
height: 250,
418
+
height: 280,
419
419
resizable: false,
420
420
parent: this._window,
421
421
modal: true,
@@ -439,7 +439,7 @@ class JupyterApplication implements IApplication, IStatefulService {
439
439
constreqList=reqVersions.join(', ');
440
440
441
441
constmessage=reason==='change' ?
442
-
`Select the Python executable in the conda or virtualenv environment you would like to use for JupyterLab Desktop. Python packages in the environment selected need to meet the following requirements: ${reqList}.` :
442
+
`Select the Python executable in the conda or virtualenv environment you would like to use for JupyterLab Desktop. Python packages in the environment selected need to meet the following requirements: ${reqList}. Prebuilt extensions installed in the selected environment will also be available in JupyterLab Desktop.` :
443
443
ejs.render(`Failed to find a compatible Python environment at the configured path "<%= configuredPath %>". Environment Python package requirements are: ${reqList}.`,{configuredPath});
0 commit comments