Skip to content

Commit

Permalink
Fix github codespace install (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
zulissimeta authored Mar 12, 2025
1 parent 8e3f311 commit a147639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/postCreateCommand.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash
if [ -f packages/requirements.txt ]; then pip install -r packages/requirements.txt; fi
if [ -f packages/requirements-optional.txt ]; then pip install -r packages/requirements-optional.txt; fi
pip install -e packages/fairchem-core[dev]
pip install -e packages/fairchem-core[dev,docs,adsorbml]
pip install -e packages/fairchem-data-oc[dev]
pip install -e packages/fairchem-demo-ocpapi[dev]
pip install -e packages/fairchem-applications-cattsunami
pip install jupytext

# Convert all .md docs to ipynb for easy viewing in vscode later!
find ./docs -name '*.md' -exec jupytext --to ipynb {} \;
find ./docs -name '*.md' -exec jupytext --to ipynb {} \;

0 comments on commit a147639

Please sign in to comment.