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