Skip to content

Instantly share code, notes, and snippets.

@ruxi
ruxi / make_conda_env.sh
Created July 21, 2016 18:38
bash script to make basic conda env
%%writefile make_conda_env.sh
#!/usr/bin/env bash
# author: github.com/ruxi
# reproducibly create conda env
read -p "Create new conda env (y/n)?" CONT
if [ "$CONT" == "n" ]; then
echo "exit";
else