finalize.sh 495 B

123456789101112131415161718
  1. echo "Running finalize script..."
  2. #
  3. # Python Package Installation
  4. #
  5. echo "--- Installing Python Dependencies\n"
  6. # Upgrade pip first
  7. python3 -m pip install --no-cache-dir --break-system-packages --upgrade pip
  8. # Install required packages
  9. pip3 install --no-cache-dir --break-system-packages -r .devcontainer/requirements.txt
  10. echo "--- Installing Ocaml stuff\n"
  11. opam init --yes --shell-setup
  12. eval $(opam env --switch=default)
  13. opam install --yes dune menhir
  14. echo "Finalize script completed. ✅"