File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ This file will use the official Python image as the base image for the
2
+ development container. It will also install some VS Code extensions for Python development,
3
+ such as the Python extension and the Jupyter.
4
+
5
+ Finally, it will run the command pip install -r requirements.txt after the container is
6
+ created, which will install all the Python libraries listed in the requirements.txt file.
7
+ You can learn more about how to create and use dev containers in VS Code from this link or this link.
8
+ I hope this helps you with your project http://code.visualstudio.com?WT.mc_id=academic-105485-koreyst
Original file line number Diff line number Diff line change 17
17
"extensions" : [
18
18
" ms-python.python" ,
19
19
" ms-toolsai.jupyter"
20
- ]
20
+ ],
21
+ "postCreateCommand" : " pip install -r requirements.txt"
21
22
}
22
23
}
23
24
}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments