Skip to content

Commit 728c86b

Browse files
authored
Setup workspace config: change copy to be more explicit (#1865)
1 parent e0f3aca commit 728c86b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

extension/src/setup.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -108,27 +108,27 @@ const pickVenvOptions = async () => {
108108
const quickPickVenvOption = () => {
109109
const options = [
110110
{
111-
description: 'and I want to select the python interpreter',
112-
label: Response.YES,
111+
description: '• Let me select the virtual environment manually',
112+
label: 'Manual',
113113
value: 1
114114
},
115115
{
116-
description:
117-
'all of the modules required to run this project are globally available',
118-
label: 'No',
116+
description: '• DVC is available globally (e.g. installed as a binary)',
117+
label: 'Global',
119118
value: 0
120119
}
121120
]
122121
if (isPythonExtensionInstalled()) {
123122
options.unshift({
124-
description: 'use the interpreter selected by the ms-python extension',
125-
label: Response.YES,
123+
description:
124+
'• Use the virtual environment detected automatically by the Python extension',
125+
label: 'Auto',
126126
value: 2
127127
})
128128
}
129129

130130
return quickPickValue<number>(options, {
131-
placeHolder: 'Does your project use a Python virtual environment?',
131+
placeHolder: 'Select an environment where DVC is installed',
132132
title: Title.SETUP_WORKSPACE
133133
})
134134
}

0 commit comments

Comments
 (0)