on_create.sh 355 B

12345678
  1. #!/usr/bin/env bash
  2. sudo apt update
  3. sudo apt install -y netcat
  4. sudo add-apt-repository -y ppa:deadsnakes/ppa
  5. sudo apt install -y python3.11
  6. curl -sSL https://install.python-poetry.org | python3.11 -
  7. # chromadb requires SQLite > 3.35 but SQLite in Python3.11.9 comes with 3.31.1
  8. sudo cp /opt/conda/lib/libsqlite3.so.0 /lib/x86_64-linux-gnu/libsqlite3.so.0