I\'m trying to create a conda environment using git-bash and win10. I ran:
$ conda create --name my_env
The result looks like the
You have to use this to get all of the Anaconda default packages:
conda create --name my_env anaconda
Otherwise, it doesn't install everything.