Skip to content

Commit

Permalink
Adding detail to create environment pip install prompt (#23470)
Browse files Browse the repository at this point in the history
We discussed how it might not be clear to the user that this action will
create a virtual environment in addition to running their last command
to install packages into the newly created environment. Thoughts on
adding this detail?
  • Loading branch information
cwebster-99 authored and DonJayamanne committed Jun 24, 2024
1 parent b37a292 commit 43d59c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/common/utils/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ export namespace CreateEnv {
export const createEnvironment = l10n.t('Create');

export const globalPipInstallTriggerMessage = l10n.t(
'You may have installed Python packages into your global environment, which can cause conflicts between package versions. Would you like to create a virtual environment to isolate your dependencies?',
'You may have installed Python packages into your global environment, which can cause conflicts between package versions. Would you like to create a virtual environment with these packages to isolate your dependencies?',
);
}
}

0 comments on commit 43d59c2

Please sign in to comment.