Skip to content

Commit

Permalink
add info on prebuilt extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
mbektas committed Nov 13, 2021
1 parent 60f7405 commit 5f6dfbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ class JupyterApplication implements IApplication, IStatefulService {
const dialog = new BrowserWindow({
title: 'Set Python Environment',
width: 600,
height: 250,
height: 280,
resizable: false,
parent: this._window,
modal: true,
Expand All @@ -439,7 +439,7 @@ class JupyterApplication implements IApplication, IStatefulService {
const reqList = reqVersions.join(', ');

const message = reason === 'change' ?
`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}.` :
`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.` :
ejs.render(`Failed to find a compatible Python environment at the configured path "<%= configuredPath %>". Environment Python package requirements are: ${reqList}.`, {configuredPath});

const template = `
Expand Down

0 comments on commit 5f6dfbc

Please sign in to comment.