SciSharp / NumSharp

High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
https://github.com/SciSharp
Apache License 2.0
1.36k stars 189 forks source link

Can't Install NumSharp from Visual Studio 2013 nuget #370

Closed yeohseong closed 4 years ago

yeohseong commented 4 years ago

image image image image

Please help !!!!! Facing this problem around 3 days.

Thank

Nucs commented 4 years ago

Hey, I think it has to do with the fact that NumSharp is targeting .netstandard 2.0 which makes me wonder if it is supported by VS 2013. So if your current project is targeting .net framework 4.7.1 and if the VS has no understanding of .netstandard, it wont be able to bind/install it as .net4.7.1.

I suggest you to upgrade to 2019's community version which is entirely free and provides really all you need.

Nucs commented 4 years ago

As said in this comment:

VS 2015 had some minimal support for .NET Standard projects via the old PCL projects, however the recommended projects are base .NET Core tooling that ships only with VS2017 so yes in order to create .NET Standard libraries it would require VS2017. You will be able to consume one in earlier version of VS but not produce one.

Therefore NumSharp can be installed on VS2017 and beyond as all nuget packages targeting .netstandard.

yeohseong commented 4 years ago

Thank for reply. any method to install it at VS2013?

Nucs commented 4 years ago

@yeohseong, Please try the following solution: https://stackoverflow.com/a/44648397/1481186

yeohseong commented 4 years ago

Is this .net C#? or Html? Because I am new in Programming :)

Thank

Nucs commented 4 years ago

Actually nevermind, the solution I gave you won't work. I don't really have a suggestion on how to fix it except to upgrade to a new visual studio version.