File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,6 @@ FROM mcr.microsoft.com/devcontainers/universal:${VARIANT}
4
4
# Create the conda environment
5
5
COPY environment.yml /tmp/conda-tmp/
6
6
RUN conda env create --file /tmp/conda-tmp/environment.yml --quiet
7
+
8
+ # Update PATH for Jupyter editing option
9
+ ENV PATH="/opt/conda/envs/pandas_workshop/bin:${PATH}"
Original file line number Diff line number Diff line change 26
26
"vscode" : {
27
27
// Set *default* container specific settings.json values on container create.
28
28
"settings" : {
29
- "python.defaultInterpreterPath" : " /home/vscode/. conda/envs/pandas_workshop"
29
+ "python.defaultInterpreterPath" : " /opt/ conda/envs/pandas_workshop"
30
30
},
31
31
32
32
// Add the IDs of extensions you want installed when the container is created.
36
36
]
37
37
}
38
38
}
39
-
40
- // Use 'forwardPorts' to make a list of ports inside the container available locally.
41
- // "forwardPorts": [],
42
-
43
- // Use 'postCreateCommand' to run commands after the container is created.
44
- // "postCreateCommand": ""
45
39
}
You can’t perform that action at this time.
0 commit comments