Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
{
"name": "CSSI Evaluation Workshop",
"image": "mcr.microsoft.com/devcontainers/miniconda:3",

// Create the conda environment (includes editable package install + notebook extras),
// register the Jupyter kernel, and activate the env in every new terminal session.
"postCreateCommand": "conda env create -f cssi_env.yml && conda run -n cssi_evaluation python -m ipykernel install --user --name=cssi_evaluation --display-name='Python (cssi_evaluation)' && echo 'conda activate cssi_evaluation' >> ~/.bashrc",

"postCreateCommand": "bash -lc \"source /opt/conda/etc/profile.d/conda.sh && conda env create -f cssi_env.yml && conda run -n cssi_evaluation python -m ipykernel install --user --name=cssi_evaluation --display-name='Python (cssi_evaluation)' && echo 'source /opt/conda/etc/profile.d/conda.sh' >> ~/.bashrc && echo 'conda activate cssi_evaluation' >> ~/.bashrc\"",
"customizations": {
"vscode": {
"extensions": [
Expand All @@ -20,4 +18,4 @@
}
}
}
}
}
Loading