File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -108,27 +108,27 @@ const pickVenvOptions = async () => {
108108const 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}
You can’t perform that action at this time.
0 commit comments