We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01aedb5 commit 8ca7ecbCopy full SHA for 8ca7ecb
.devcontainer/devcontainer.json
@@ -29,9 +29,14 @@
29
"mounts": [
30
"source=${localWorkspaceFolderBasename}-pixi,target=${containerWorkspaceFolder}/.pixi,type=volume"
31
],
32
+ // These should execute in order below
33
+ "onCreateCommand": {
34
+ "configure_jupyterlab": "pip install jupyterlab_myst pixi-kernel"
35
+ },
36
"postCreateCommand": {
- "configure_jupyterlab": "pip install jupyterlab_myst pixi-kernel",
- "set_pixi_permissions": "sudo chown vscode .pixi",
- "install_pixi_environment": "pixi install"
37
+ "set_pixi_permissions": "sudo chown vscode .pixi"
38
39
+ "postStartCommand": {
40
+ "configure_jupyterlab": "pixi install"
41
}
42
0 commit comments