|
|
|
@ -146,6 +146,24 @@ $ cd swarms
|
|
|
|
|
$ pip install -e .
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Using Docker
|
|
|
|
|
|
|
|
|
|
The easiest way to get started with Swarms is using our pre-built Docker image:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Pull and run the latest image
|
|
|
|
|
$ docker pull kyegomez/swarms:latest
|
|
|
|
|
$ docker run --rm kyegomez/swarms:latest python -c "import swarms; print('Swarms is ready!')"
|
|
|
|
|
|
|
|
|
|
# Run interactively for development
|
|
|
|
|
$ docker run -it --rm -v $(pwd):/app kyegomez/swarms:latest bash
|
|
|
|
|
|
|
|
|
|
# Using docker-compose (recommended for development)
|
|
|
|
|
$ docker-compose up -d
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
For more Docker options and advanced usage, see our [Docker documentation](DOCKER.md).
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Environment Configuration
|
|
|
|
|