Skip to content
Snippets Groups Projects
Verified Commit 68862d6a authored by Laurent Modolo's avatar Laurent Modolo
Browse files

conda_packages.sh: fix conda install cmd

parent 69ac9343
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
function install_env {
if [ ! -d "${CONDA_PREFIX}/envs/${1}_${2}" ]; then
install_env ${1}_${2} ${3}
conda create --yes --name ${1}_${2} ${3}=${2}
fi
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment