[Sentis] Resolve Missing com.unity.sentis Package in Unity 6
Solution
Unity 6000.0.x - Unity 6.3.x
Published Thu, Apr 30
The com.unity.sentis package is reported as unavailable or cannot be found when using the Package Manager in specific versions of the Unity Editor, such as 6000.0.55f1. This prevents developers from implementing AI model inference within their your project.
The com.unity.sentis package visibility issue in the Unity Editor typically stems from registry metadata delays or local cache conflicts during the transition between specific Unity 6 development cycles. While some builds might fail to list the package automatically, Sentis remains the primary framework for neural network inference and can be forcibly loaded.
To resolve this, your project configuration must be updated manually:
- Close the
Unity Editor. - Navigate to your project root directory and open the
Packagesfolder. - Open the
manifest.jsonfile using a standard text editor. - Locate the
dependenciesobject and insert"com.unity.sentis": "2.1.1"(or the specific version required for your workflow). - Save the file and restart the
Unity Editorto trigger a package re-resolve and download.
Additional Tips
- Use the Add package by name option in the
Package Manager(+) menu as an alternative to manual file editing to verify connectivity. - If the package still fails to appear, delete the
PackageCachefolder and theLibraryfolder in your project directory to force a clean metadata fetch. - Verify that the Unity Registry is selected in the
Package Managerdropdown rather than In Project or My Assets.
TL;DR
Access to Sentis is restored by manually injecting the package dependency into the manifest.json file or targeting a specific stable version to bypass registry sync issues.
Related Posts Haven't quite found a solution to your problem? We think these posts might help you.
Content inspired by a Unity discussion post.