Skip to content

Commit 7ed7286

Browse files
authored
Merge pull request #9 from amkrajewski/configured
Configured Codespaces (#8)
2 parents 278b803 + cc9f3f5 commit 7ed7286

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.devcontainer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"image": "mcr.microsoft.com/devcontainers/miniconda",
3+
"customizations": {
4+
"codespaces": {
5+
"openFiles": [
6+
"README.md",
7+
"Lecture1.ipynb",
8+
"Lecture2.ipynb"
9+
]
10+
},
11+
"vscode": {
12+
"extensions": [
13+
"wijmo.gc-excelviewer",
14+
"mechatroner.vscode_rainbow_csv",
15+
"ms-python.python",
16+
"ms-toolsai.jupyter",
17+
"hansvn.instant-mongo"
18+
]
19+
}
20+
},
21+
"hostRequirements": {
22+
"cpus": 4,
23+
"memory": "16gb",
24+
"storage": "16gb"
25+
},
26+
"onCreateCommand": "conda install -y python=3.10 jupyter numpy scipy && pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu && pip install pymatgen pysipfenn pymongo scikit-learn"
27+
}

0 commit comments

Comments
 (0)