- Home /
How to add NuGet Package "Microsoft.Data.Analysis" to project
I am trying to use the https://www.nuget.org/packages/Microsoft.Data.Analysis/ package in my unity project. It needs some other packages (Apache.Arrow and Microsoft.ML.DataView) and some System packages that I should not need to download separately. I tried the following:
- manually adding the package and non-system dependencies only
this causes immediate errors that "System.Memory" etc. cannot be resolved
- manually adding all sub-dependences (including System.*) that nuget for visual studio installed in my project folder
this causes lots of errors because all the system libraries somehow cause conflicts with unity's built-in c# system
installing everything via https://github.com/GlitchEnzo/NuGetForUnity .
causes errors that say "version mismatch: 4.0.0.0 of is referenced from but 4.0.0.3 found" etc.
what is the recommended way to do this?
Comment
Your answer
