I'm new to the Conda environment and I was trying to create an environment by conda create -n chip python=2.7
, and then source activate chip
to activate the environment, but then I got the error message:
Could not find conda environment: chip
You can list all discoverable environments with `conda info --envs`.
And conda info --envs
returned me:
# conda environments:
#
base * /Users/yin/miniconda3
/anaconda3
/anaconda3/envs/chip
I tried source activate /anaconda3/envs/chip
and it worked.
So can I add a name to my new environment (e.g. chip) so that I can activate it without typing the full path?
Thank you!