Skip to content

Instantly share code, notes, and snippets.

View techstep's full-sized avatar
🤔

Rob Jefferson techstep

🤔
View GitHub Profile
function condalist -d 'List conda environments.'
for dir in (ls $HOME/anaconda/envs)
echo $dir
end
end
function condactivate -d 'Activate a conda environment' -a cenv
if test -z $cenv
echo 'Usage: condactivate <env name>'
return 1