环境准备全流程指南
要运行gibberlink项目,需要完成以下关键步骤配置:
Preparation of the basic environment
- 安装Node.js LTS版本(v18.x+)并验证:
node -v && npm -v
- 获取项目代码:
git clone https://github.com/PennyroyalTea/gibberlink.git
- Install dependent libraries:
cd gibberlink && npm install
运行与测试
- Start the development server:
npm start
- 在另一设备打开ggwave在线解码器:
https://waver.ggerganov.com - 保持两台设备麦克风间距<50cm
- 观察终端日志:
Conversation ended successfully in gibbMode
Handling of common problems
- 麦克风权限问题:检查浏览器/系统录音权限设置
- 音频解码失败:降低环境噪音或调小音量
- 依赖安装错误:尝试
rm -rf node_modules && npm install
This answer comes from the articlegibberlink: a demonstration project for efficient audio communication between two AI intelligencesThe