Open Source Unity Package Registry
Open Source Packages
Automated Package Publishing
Command-Line Interface
Sponsors
Get Started with OpenUPM-CLI
OpenUPM can be used directly as a registry through standard Unity Package Manager workflows, however, with the CLI, package installation and updates become faster, reducing manual steps and improving productivity.
# Install openupm-cli
$ npm install -g openupm-cli
# Enter your Unity project folder
$ cd YOUR_UNITY_PROJECT_FOLDER
# Search a package
$ openupm search addressable-importer
┌──────────────────────────────────────────┬────────────────────┬────────────┐
│ Name │ Version │ Date │
├──────────────────────────────────────────┼────────────────────┼────────────┤
│ com.littlebigfun.addressable-importer │ 0.16.1 │ 2023-02-08 │
└──────────────────────────────────────────┴────────────────────┴────────────┘
# Install package
$ openupm add com.littlebigfun.addressable-importer
added com.littlebigfun.addressable-importer@0.16.1
please open Unity project to apply changes.