I am trying to create a conda environmet in google colab notebook. I succesfully installed conda with the following comannd
!wget -c https://repo.contin
put !source activate myenv &&
before all your bash commands
!source activate myenv &&
For example
!source activate myenv && conda env list
base /usr/local
myenv * /usr/local/envs/myenv
Well we have to put !
in front of your bash commands anyway...
But I would love to know a better way.