wasm-micro-runtime/.devcontainer/finalize.sh
liang.he a60c707a5a
Some checks failed
hadolint dockerfiles / run-hadolint-on-dockerfiles (push) Has been cancelled
[devcontainer] install ocmal stuff (#4798)
For gc proposal spec test
2026-01-25 21:47:58 +08:00

19 lines
495 B
Bash

echo "Running finalize script..."
#
# Python Package Installation
#
echo "--- Installing Python Dependencies\n"
# Upgrade pip first
python3 -m pip install --no-cache-dir --break-system-packages --upgrade pip
# Install required packages
pip3 install --no-cache-dir --break-system-packages -r .devcontainer/requirements.txt
echo "--- Installing Ocaml stuff\n"
opam init --yes --shell-setup
eval $(opam env --switch=default)
opam install --yes dune menhir
echo "Finalize script completed. ✅"