Hayk Arutyunyan commited on
Commit ·
9ed7083
1
Parent(s): 915cb29
Add Python 3.10 devcontainer
Browse files
.devcontainer/devcontainer.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "mnemo_ocr Python 3.10",
|
| 3 |
+
"image": "mcr.microsoft.com/devcontainers/python:3.10",
|
| 4 |
+
"customizations": {
|
| 5 |
+
"vscode": {
|
| 6 |
+
"extensions": [
|
| 7 |
+
"ms-python.python",
|
| 8 |
+
"ms-toolsai.jupyter"
|
| 9 |
+
]
|
| 10 |
+
}
|
| 11 |
+
},
|
| 12 |
+
"postCreateCommand": "pip install --upgrade pip && pip install -r requirements.txt"
|
| 13 |
+
}
|