Created
March 9, 2023 10:11
-
-
Save nissan/c25038b68dbe56f4ef71f456202a5e8f to your computer and use it in GitHub Desktop.
Commands to get micromamba running with environment file for Learn Bayesian Statistics repo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
curl micro.mamba.pm/install.sh | bash | |
source ~/.bashrc | |
#Assuming I've pulled the environment.yml file from my repo | |
micromamba create -n learn-bayes -f environment.yml -c conda-forge | |
micromamba activate learn-bayes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment