Skip to content

Commit 0920b31

Browse files
authored
Revert back and move conda install into init task
1 parent 9760829 commit 0920b31

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.gitpod.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11

2-
image: condaforge/mambaforge:22.9.0-2 # https://stackoverflow.com/questions/74413538/how-to-efficiently-set-up-development-conda-env-in-gitpod
3-
42
tasks: # before and init tasks are pre-built: https://www.gitpod.io/docs/configure/projects/prebuilds
53
- name: OpenBB Terminal # Install and Setup: miniconda, openbb terminal and openbb sdk
6-
init: |
4+
before: |
75
git clone https://github.com/OpenBB-finance/OpenBBTerminal.git
86
cd OpenBBTerminal
7+
init: |
8+
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
9+
bash ~/miniconda.sh -b -p ${HOME}/miniconda
10+
eval "$(${HOME}/miniconda/bin/conda shell.bash hook)"
11+
conda init
12+
conda install -n base -c conda-forge mamba -y
13+
mamba create -n genelab-utils -c conda-forge -c bioconda -c defaults -c astrobiomike 'genelab-utils>=1.1.02' -y
914
conda create -n obb python=3.9.6 -y
1015
conda activate obb
1116
pip install openbb==2.0.0
@@ -45,4 +50,4 @@ vscode:
4550
- ms-python.python
4651
- ms-toolsai.jupyter-renderers
4752
- ms-toolsai.jupyter
48-
- eamodio.gitlens
53+
- eamodio.gitlens

0 commit comments

Comments
 (0)