File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash -e
2
2
3
- echo " Install Miniconda "
4
- CONDA_URL =" https://github.com/conda-forge/miniforge/releases/download/4.14.0-0/Miniforge3 -4.14.0-0-Linux-aarch64.sh"
5
- echo " Downloading $CONDA_URL "
6
- wget -q $CONDA_URL -O miniconda .sh
7
- chmod +x miniconda .sh
3
+ echo " Install Mambaforge "
4
+ MAMBA_URL =" https://github.com/conda-forge/miniforge/releases/download/4.14.0-0/Mambaforge -4.14.0-0-Linux-aarch64.sh"
5
+ echo " Downloading $MAMBA_URL "
6
+ wget -q $MAMBA_URL -O minimamba .sh
7
+ chmod +x minimamba .sh
8
8
9
- MINICONDA_DIR =" $HOME /miniconda3"
10
- rm -rf $MINICONDA_DIR
11
- ./miniconda .sh -b -p $MINICONDA_DIR
9
+ MAMBA_DIR =" $HOME /miniconda3"
10
+ rm -rf $MAMBA_DIR
11
+ ./minimamba .sh -b -p $MAMBA_DIR
12
12
13
- export PATH=$MINICONDA_DIR /bin:$PATH
13
+ export PATH=$MAMBA_DIR /bin:$PATH
14
14
15
15
echo
16
16
echo " which conda"
20
20
echo " update conda"
21
21
conda config --set ssl_verify false
22
22
conda config --set quiet true --set always_yes true --set changeps1 false
23
- conda install -y -c conda-forge -n base ' mamba>=0.21.2 ' pip setuptools
23
+ mamba install -y -c conda-forge -n base pip setuptools
24
24
25
25
echo " conda info -a"
26
26
conda info -a
You can’t perform that action at this time.
0 commit comments