Install Vyomi
Pick the path that matches your platform. Every one lands on the same simulator running at http://localhost:9000.
Already have Docker Desktop? Pull the published docker-compose.yml and run it directly. No Multipass needed; the stack runs in your host Docker daemon.
mkdir -p ~/.cloudlearn && cd ~/.cloudlearn
curl -O https://raw.githubusercontent.com/sudhirkumarganti/cloud-learn/main/docker-compose.yml
docker compose up -d
open http://localhost:9000
docker compose --profile full up -d
docker compose down # stop
docker compose pull && up -d # upgrade to latest image
Native package — installs the cloud-learn launcher CLI to PATH. `cloud-learn up` boots a Multipass VM and runs the simulator inside.
brew install --cask multipass
brew tap sudhirkumarganti/tap
brew install cloud-learn
cloud-learn up
# follow the URL the launcher prints, e.g. http://192.168.x.x:9000
brew upgrade cloud-learn
Already have Docker Desktop? Pull the published docker-compose.yml and run it directly. No Multipass needed; the stack runs in your host Docker daemon.
mkdir -p ~/.cloudlearn && cd ~/.cloudlearn
curl -O https://raw.githubusercontent.com/sudhirkumarganti/cloud-learn/main/docker-compose.yml
docker compose up -d
open http://localhost:9000
docker compose --profile full up -d
docker compose down # stop
docker compose pull && up -d # upgrade to latest image
Native package — installs the cloud-learn launcher CLI to PATH. `cloud-learn up` boots a Multipass VM and runs the simulator inside.
brew install --cask multipass
brew tap sudhirkumarganti/tap
brew install cloud-learn
cloud-learn up
# follow the URL the launcher prints, e.g. http://192.168.x.x:9000
brew upgrade cloud-learn
Direct .deb download from GitHub Releases. Installs the cloud-learn launcher CLI to /usr/bin/cloud-learn.
sudo snap install multipass
# or: sudo apt install multipass (Ubuntu 22.04+)
wget https://github.com/sudhirkumarganti/cloud-learn/releases/download/v0.1.0/cloud-learn_0.1.0_all.deb
sudo apt install ./cloud-learn_0.1.0_all.deb
cloud-learn up
Direct .rpm download from GitHub Releases. Same launcher as the .deb, installed via dnf.
sudo snap install multipass
# Snap is the only supported Multipass distribution on Fedora/RHEL today.
wget https://github.com/sudhirkumarganti/cloud-learn/releases/download/v0.1.0/cloud-learn-0.1.0-1.noarch.rpm
sudo dnf install ./cloud-learn-0.1.0-1.noarch.rpm
cloud-learn up
Sandboxed Linux app from the Snap Store. Pipeline shipped end-to-end; classic confinement gating final publish.
sudo snap install cloud-learn --classic
Already have Docker Desktop? Pull the published docker-compose.yml and run it directly. No Multipass needed; the stack runs in your host Docker daemon.
mkdir -p ~/.cloudlearn && cd ~/.cloudlearn
curl -O https://raw.githubusercontent.com/sudhirkumarganti/cloud-learn/main/docker-compose.yml
docker compose up -d
open http://localhost:9000
docker compose --profile full up -d
docker compose down # stop
docker compose pull && up -d # upgrade to latest image
Native Windows package via winget. Coming once we ship a signed MSI installer.
winget install Canonical.Multipass
winget install CloudLearn.CloudLearn
cloud-learn up
The Brew of Windows. Single manifest, no review queue, no MSI. Installs the cloud-learn launcher and pulls Multipass automatically.
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh | iex
scoop bucket add cloudlearn https://github.com/sudhirkumarganti/scoop-bucket
scoop install cloud-learn
cloud-learn up
# follow the URL the launcher prints, e.g. http://192.168.x.x:9000
scoop update cloud-learn