Skip to content

Commit a829280

Browse files
committed
conda not active in second terminal
1 parent 39560de commit a829280

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.gitpod.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
tasks: # before and init tasks are pre-built: https://www.gitpod.io/docs/configure/projects/prebuilds
22

3-
- name: OpenBB SDK
3+
- name: Miniconda Install
44
before: |
55
mkdir -p ${HOME}/miniconda3-install-script
66
curl -o ${HOME}/miniconda3-install-script/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
@@ -14,16 +14,14 @@ tasks: # before and init tasks are pre-built: https://www.gitpod.io/docs/configu
1414
- name: OpenBB SDK
1515
init: |
1616
gp sync-await condaenv
17-
conda create -n obb python=3.9.6 -y
17+
eval "$(${HOME}/miniconda3/bin/conda shell.bash hook)"
18+
conda create -n obb python=3.9.6 -y
1819
conda activate obb
1920
pip install --upgrade pip
2021
pip install openbb[all]==2.0.0
2122
command: conda activate obb
2223

2324

24-
25-
26-
2725
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
2826
# ports:
2927
# - port: 3000

0 commit comments

Comments
 (0)