pos nomas

This commit is contained in:
aguitauwu
2026-02-16 11:41:18 -06:00
parent d0d85c8fb5
commit 5a4b5b83dd
24 changed files with 1021 additions and 199 deletions

23
install.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
set -e
echo "Installing YuuBox..."
# Install Rust if not present
if ! command -v cargo &> /dev/null; then
echo "Installing Rust..."
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
fi
# Install maturin
pip install maturin
# Build and install
./build.sh
echo ""
echo "✅ Installation complete!"
echo ""
echo "Test with:"
echo " yuubox run examples/basic_usage.py"