Skip to content

Commit

Permalink
Install mamba automatically in the install script
Browse files Browse the repository at this point in the history
  • Loading branch information
radekd91 committed Feb 11, 2023
1 parent 5845c79 commit 979d5b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ fi

echo "Pulling submodules"
bash pull_submodules.sh
echo "Installing mamba"
conda install mamba -n base -c conda-forge
echo "Creating conda environment"
mamba env create python=3.6 --file conda-environment_py36_cu11_ubuntu.yml
eval "$(conda shell.bash hook)" # make sure conda works in the shell script
Expand Down
2 changes: 2 additions & 0 deletions install_38.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ fi

echo "Pulling submodules"
bash pull_submodules.sh
echo "Installing mamba"
conda install mamba -n base -c conda-forge
echo "Creating conda environment"
mamba env create python=3.8 --file conda-environment_py38_cu11_ubuntu.yml
eval "$(conda shell.bash hook)" # make sure conda works in the shell script
Expand Down

0 comments on commit 979d5b1

Please sign in to comment.