Bundle software packages with all their dependencies into a single zip file — then install on any machine, even one with zero internet access.
pip install or apt-get on a production server.
Modern package managers assume you have a reliable outbound connection. In the real world, that assumption breaks all the time.
Secure production servers block outbound traffic entirely. You literally cannot download packages at runtime — even if you wanted to.
Many enterprises block PyPI, npm, pkg.go.dev, and apt mirrors by policy. pip install requests just hangs forever.
Bundle once on a fast connection, then copy the zip to a hundred machines without downloading anything twice.
Lock an exact snapshot of a library and all its transitive deps. Re-deploy the same versions six months later, guaranteed.
Working on a plane, a ship, or a remote site? Bundle what you need before you leave and code without connectivity.
Eliminate network round-trips in build pipelines. Serve pre-bundled packages from an internal mirror for near-instant installs.
Every bundler on this site works the same way — paste, click, download.
Type what you need — e.g. requests, express, cobra, nginx
The bundler pulls the package plus every transitive dependency, for your chosen version and platform
Get a .zip containing all files and an install script. Copy it anywhere and run it — no internet needed
Every bundler ships with an 18-test validation suite you can run live in the browser — from input rejection through isolated installation and import verification.
text/event-stream, watches for the package manager's download output and dist file names, verifies ClamAV reports no threats, and validates the download token format./bundle-meta/<token> endpoint without consuming the download token, verifying the filename ends in .zip and the bundle is larger than 10 KB.dpkg -qp, rpm -qp, or zip integrity for wheels), and the target package's own file must be identifiable.dpkg root, an rpm2cpio tree, or a Python venv — with no network access. Reads back the installed version, then verifies the package is functional (importable, binary present, or files on disk)..deb into an isolated dpkg root using dpkg-deb --extract..rpm into an isolated root via rpm2cpio | cpio.npm install --offline, and verify the binary is present in node_modules/.bin/.Seven bundlers covering the most-used package managers and deployment formats.
setup.sh that builds a venv and installs everything
offline. Works on any architecture.
node_modules/ folder ready to drop straight into any project.
Includes an optional embedded Node.js runtime for truly self-contained deploys.
.deb files with all dependencies plus a one-command
install script for offline dpkg installation.
.rpm files with all dependencies plus an install script for
offline rpm / dnf installation.
.nupkg files with all transitive dependencies plus
install.ps1 / install.sh
for offline dotnet restore on air-gapped machines.
.tar archive ready for
docker load. Ship containers to environments that can't reach the internet.
Pick a bundler above, enter a package name, and download in seconds.