-
Notifications
You must be signed in to change notification settings - Fork 8
Tutorial for Windows
Takuya Takeuchi edited this page Apr 28, 2018
·
1 revision
-
LIBSVM
- 3.22
-
Visual Studio
- Recommended 2017
- .NET Core 2.0
- Open Visual Studio Command Prompt and change to libsvm directory
- Type the following code in a console:
nmake -f Makefile.win clean all
- Type the following code in a console:
nmake -f Makefile.win lib
After this, libsvm.dll will be generated in libsvm\windows.
- Refer Prerequisites for .NET Core on Windows](https://docs.microsoft.com/en-us/dotnet/core/windows-prerequisites?tabs=netcore2x)
- Open LibSvmDotNet\LibSvmDotNet.sln in Visual Studio
- Do build command for LibSvmDotNet project
- Install .NET Core 2.0 by following the official page
- Open LibSvmDotNet\src\LibSvmDotNet in console
- Type the following code in a console:
dotnet build -c Release
Or
dotnet build -c Debug