I would like to export all my conda libraries in one go.
So the question was partly answered in this post: Export all created conda environments
for env in $(conda env list | cut -d" " -f1); do
if [[ ${env:0:1} == "#" ]] ; then continue; fi;
conda env export -n $env > ${env}.yml
done
but since i'm not so experienced, or perhaps plain stupid, my question is: ** where and how do I run this piece of code on a win10 machine?**
running it in conda doesn't work, cmd prompt also fails screenshot
do I need to put it in a script? Or is this solution simply not going to work on windows?