ANUS安装方法
ANUS提供多种安装方案以适应不同用户需求:
1. Git克隆安装(推荐开发者)
- 确保安装Python 3.11+和Git
- Cloning Warehouse:
git clone https://github.com/nikmcfly/ANUS.git
- 创建和激活虚拟环境
- Install the dependencies:
pip install -e .
2. Docker安装(快速部署)
- Pull the mirror image:
docker pull anusai/anus:latest
- Run the container:
docker run -it anusai/anus:latest
3. Conda安装(科研用户)
通过Conda创建Python 3.11环境后使用pip安装anus-ai
包
Installation Precautions
- Windows用户可能需要额外安装windows-curses
- 浏览器自动化功能需要安装Playwright
- 建议使用虚拟环境隔离依赖
This answer comes from the articleANUS: An Open Source AI Framework for Task Automation and Multi-Agent CollaborationThe