File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed
Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+ // README at: https://github.com/devcontainers/templates/tree/main/src/python
3+ {
4+ "name" : " Python 3" ,
5+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+ "image" : " mcr.microsoft.com/devcontainers/python:0-3.11" ,
7+ "onCreateCommand" : " pip3 install --user -r requirements.txt" ,
8+ "customizations" : {
9+ "vscode" : {
10+ "extensions" : [
11+ " ms-toolsai.jupyter" ,
12+ " ms-python.python"
13+ ]
14+ }
15+ }
16+
17+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
18+ // "forwardPorts": [],
19+
20+ // Use 'postCreateCommand' to run commands after the container is created.
21+ // "postCreateCommand": "pip3 install --user -r requirements.txt",
22+
23+ }
Original file line number Diff line number Diff line change 1010 (cp -n .env.example .env || true) &&
1111 psql -U gitpod -c 'CREATE DATABASE example;'
1212 gp open README.md;
13- npm install heroku -g;
1413
1514ports :
1615 - port : 9000-9099
@@ -20,3 +19,4 @@ vscode:
2019 extensions :
2120 - ms-toolsai.jupyter
2221 - ms-python.python
22+ - vscode.python
Original file line number Diff line number Diff line change 11# Base ----------------------------------------
2+ ipywidgets == 7.7.1
23sqlalchemy == 1.4.37
34pymysql == 1.0.2
45pandas == 1.4.2
@@ -13,4 +14,4 @@ ipyleaflet>=0.14.0
1314sympy >= 1.10.1
1415
1516# Machine learning ----------------------------
16- sklearn
17+ scikit-learn
You can’t perform that action at this time.
0 commit comments