-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Marco Vasko-Klima edited this page Jul 23, 2026
·
9 revisions
Installing Neural Network Notions via DLL download, NuGet, and Unity.
Also refer to the Compatibility Documentation.
- Download the NNN-vX.X.X.zip file from the GitHub release.
- Extract the .zip file - you will see the NNN/ directory containing the runtime/ directory, as well as the LICENSE and README files.
- Add the DLL files (NNN.dll and NNNCSharp.dll) in the extracted runtime/ directory into anywhere in your project's directory.
- Add the following to your .csproj file:
<ItemGroup> <Reference Include="NNNCSharp"> <HintPath>Relative/Path/To/NNNCSharp.dll</HintPath> </Reference> </ItemGroup> - Refer to the C# API Documentation for implementing Neural Network Notions in your code.
- Search for "NNN" in the Visual Studio NuGet package manager and install.
-
Add the following to your .csproj file:
<ItemGroup> <PackageReference Include="NNN" Version="[Version you would like to use]" /> </ItemGroup>
Refer to the C# API Documentation for implementing Neural Network Notions in your code.
-
- Open the Unity Package Manager in the Unity Editor and click the "+" in the top left corner.
- Select "Add package from git URL."
- Enter the following URL: https://github.com/marcov-k/NNN.git#upm
-
- Download the NNN-UPM-vX.X.X.zip file from the GitHub release.
- Extract the .zip file and paste complete extracted folder into your Unity project's Packages/ directory.
Refer to the C# API Documentation for implementing Neural Network Notions in your code.