Pre-built Ubuntu 24.04 VM image for quicksand
Project description
Quicksand Ubuntu
This package bundles a pre-built Ubuntu 24.04 VM image for the quicksand agent harness. No downloads required after installation.
Ubuntu is ideal for AI agents that need a full Linux environment with the apt package manager and broad software compatibility.
Installation
pip install 'quick-sandbox[qemu,ubuntu]'
Or install separately:
pip install quick-sandbox
quicksand install ubuntu
Usage
Simple (recommended)
import asyncio
from quicksand import UbuntuSandbox
async def main():
async with UbuntuSandbox() as sb:
result = await sb.execute("cat /etc/os-release")
print(result.stdout)
asyncio.run(main())
With custom config
from quicksand import UbuntuSandbox
async with UbuntuSandbox(memory="2G", cpus=4) as sb:
result = await sb.execute("uname -a")
Or using Sandbox directly:
from quicksand import Sandbox
async with Sandbox(image="ubuntu", memory="2G", cpus=4) as sb:
result = await sb.execute("uname -a")
What's Included
The Ubuntu 24.04 image includes:
- Python 3
- Bash, curl, ca-certificates
- Networking tools
- The quicksand agent (pre-installed and configured)
Package Size
The wheel is ~300MB because it includes the full VM image. This is intentional - it eliminates runtime downloads and ensures reproducible environments.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file quicksand_ubuntu-0.9.4-py3-none-any.whl.
File metadata
- Download URL: quicksand_ubuntu-0.9.4-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efcfed41275f4e8ab9a05db0b0b1cc91ed3228731406d14bb310281df0795549
|
|
| MD5 |
31c94e5fed511cf94878841f8a2130c3
|
|
| BLAKE2b-256 |
1a7eec23fc5db95f6e1686fc4e6dd74a564e365f4a4224cab054f8951eb81e73
|