You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
517 B

#!/bin/bash
# /root/.openclaw/workspace/scripts/07-install-dependencies.sh
set -e
echo "📦 安装依赖..."
# 安装 mem0ai
echo "安装 mem0ai..."
pip install mem0ai --break-system-packages --quiet
# 验证安装
if python3 -c "import mem0" 2>/dev/null; then
echo "✅ mem0ai 安装成功"
else
echo "❌ mem0ai 安装失败"
exit 1
fi
# 安装 PyYAML
echo "安装 PyYAML..."
pip install pyyaml --break-system-packages --quiet
echo "✅ PyYAML 安装成功"
echo ""
echo "✅ 依赖安装完成"