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 0693324 commit 1f11d92Copy full SHA for 1f11d92
.devcontainer/devcontainer.json
@@ -30,7 +30,8 @@
30
"remoteEnv": {
31
"ENABLE_ORYX_BUILD": "false"
32
},
33
- "onCreateCommand": "conda env create -f environment.yml",
34
- "updateContentCommand": "conda init",
35
- "postCreateCommand": "/opt/conda/envs/golden_scenario_env/bin/jupyter lab --notebook-dir=/workspaces/data-science --ip='0.0.0.0' --port=8888 --no-browser"
+ // There is not a feature for LaTeX in VS Code yet, so we need to install it manually
+ "onCreateCommand": "sudo apt-get update && sudo apt install -y texlive-xetex pandoc && conda env create -f environment.yml",
+ "updateContentCommand": "conda init"
36
+ // "postCreateCommand": "/opt/conda/envs/golden_scenario_env/bin/jupyter lab --notebook-dir=/workspaces/data-science --ip='0.0.0.0' --port=8888 --no-browser"
37
}
0 commit comments