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 directory
In reality in both cases it would be enough if the automatic call was:
$ conda activate <environment>
instead of:
$ source <python.pythonPath>
$ conda activate <environment>
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:
instead of: