I am trying to create a conda environmet in google colab notebook. I succesfully installed conda with the following comannd
!wget -c
https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh
!chmod +x Anaconda3-5.1.0-Linux-x86_64.sh
!bash ./Anaconda3-5.1.0-Linux-x86_64.sh -b -f -p /usr/local
Default python which is using by system is now Python 3.6.4 :: Anaconda, Inc.
I am trying to create an environment in conda by conda env create -f environment.yml
Every package got successfully installed but the problem now is that I am not able to activate this environment.
I tried source activate myenv. but it also didn't worked.
After conda env list command I got two environments
base * /usr/local
myenv /usr/local/envs/myenv
Can anyone please help me how can I switch on to "myenv" environment?
Any help will be very much appreciated.
Thanks In advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…