File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,21 @@ tasks: # before and init tasks are pre-built: https://www.gitpod.io/docs/configu
22
33 - name : OpenBB SDK
44 before : |
5- mkdir -p ~ /miniconda3
6- curl -o ~ /miniconda3/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
5+ mkdir -p ${HOME} /miniconda3-install-script
6+ curl -o ${HOME} /miniconda3-install-script /miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
77 init : |
8- bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
8+ bash ${HOME}/miniconda3-install-script/miniconda.sh -b -u -p ${HOME}/miniconda3
9+ eval "$(${HOME}/miniconda3/bin/conda shell.bash hook)"
910 conda init
1011 gp sync-done condaenv
11- command : rm -rf ~ /miniconda3/miniconda.sh
12+ command : rm -rf ${HOME} /miniconda3-install-script
1213
1314 - name : OpenBB SDK
1415 init : |
1516 gp sync-await condaenv
1617 conda create -n obb python=3.9.6 -y
1718 conda activate obb
19+ pip install --upgrade pip
1820 pip install openbb[all]==2.0.0
1921 command : conda activate obb
2022
You can’t perform that action at this time.
0 commit comments