Can I change the command conda activate env_name
to activate the environment?
Instead, I want to give my custom command. Is that possible?
Advertisement
Answer
You can create an alias, you might have to save it in your .bashrc/.bash_profile file.
alias <custom command>="conda activate <env name>"