Skip to content

Instantly share code, notes, and snippets.

@atgmello
Last active March 6, 2020 00:29
Show Gist options
  • Save atgmello/a254c8b11828e0c9ea3ea2bb22b6e080 to your computer and use it in GitHub Desktop.
Save atgmello/a254c8b11828e0c9ea3ea2bb22b6e080 to your computer and use it in GitHub Desktop.
Conda env setup automation for the DS4A LATAM 2020 course cases.
#!/bin/sh
cd $1
for D in *; do
if [ -d "${D}" ]; then
echo "Now working at"
echo "${D}"
echo "..."
cd ${D}
conda env update --file osx_env.yml
echo "All done!"
echo ""
cd ..
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment