Update README.md

pull/1002/head
CI-DEV 1 month ago committed by GitHub
parent f88c94ba46
commit cc37ec218a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

Loading…
Cancel
Save