forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
area-environmentsFeatures relating to handling interpreter environmentsFeatures relating to handling interpreter environmentsbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable buggood first issueneeds PRReady to be worked onReady to be worked on
Description
I have a Debian system with miniconda3 installed and two environments: a global one ('base': conda) and a local one ('.conda-env': conda). When selecting the global one and creating a new terminal window the environment is correctly activated via the following commands:
$ source /opt/miniconda3/bin/activate
(miniconda3) $ conda activate base
(miniconda3) $Whereas if I select the local one, the activation does not take place:
$ source activate .conda-env
bash: activate: No such file or directoryIn reality in both cases it would be enough if the automatic call was:
$ conda activate <environment>instead of:
$ source <python.pythonPath>
$ conda activate <environment>underchemist, petricevich, simozacca, marcinwrochna and noelsison
Metadata
Metadata
Assignees
Labels
area-environmentsFeatures relating to handling interpreter environmentsFeatures relating to handling interpreter environmentsbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable buggood first issueneeds PRReady to be worked onReady to be worked on