Installing a Package
This page explains how to install Unity packages hosted on pckgs.io.
You’ll learn how to install packages both manually (via manifest.json) and through the Unity Package Manager Window.
Add the pckgs.io Scoped Registry
Before installing packages, you need to configure your Unity project to use pckgs.io as a scoped registry.
Follow our step-by-step guide: Add pckgs.io to Unity.
Installing via Unity Package Manager
Once the registry is configured, you can browse and install packages directly in the Unity Package Manager Window. This provides a visual interface for managing dependencies without editing any files manually.
Manual Installation
To install a package manually, open your project’s manifest.json file and add package name and version under the dependencies section.
Example
"scopedRegistries": [
{
"name": "pckgs.io",
"url": "https://upm.pckgs.io",
"scopes": [
"com.my-company"
]
}
],
"dependencies": {
"com.my-company.package-name": "1.0.0"
} For private packages, make sure you have set up an access token on your device. See the detailed guide here.
Need Further Assistance?
Should you encounter any issues or have questions about the installation process, please feel free to contact us here or email us at [email protected].