Skip to content

Commit 7f97e24

Browse files
committed
change conda activate -> source activate
1 parent 7634bae commit 7f97e24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.azure-pipelines/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ steps:
2222
- script: |
2323
# Install Python, py.test, and required packages.
2424
conda env create -f environment.yml
25-
conda activate bayesian-modelling-tutorial
25+
source activate bayesian-modelling-tutorial
2626
conda install python=$(python.version)
2727
python -m ipykernel install --user --name bayesian-modelling-tutorial
2828
displayName: 'Create environment, install correct Python, and activate kernel.'
2929

3030
# Q: Does second script not recognize environment context from 1st script?
3131
- script: |
32-
conda activate bayesian-modelling-tutorial
32+
source activate bayesian-modelling-tutorial
3333
mkdir -p docs/notebooks
3434
jupyter nbconvert --config nbconvert_config.py --execute --template full
3535
pandoc README.md -o docs/index.html -c static/pandoc.css -s

0 commit comments

Comments
 (0)