-
Notifications
You must be signed in to change notification settings - Fork 0
Tutorial for Windows
Takuya Takeuchi edited this page May 4, 2018
·
1 revision
-
LIBLINEAR
- 2.20
-
Visual Studio
- Recommended 2017
- .NET Core 2.0
- Open Visual Studio Command Prompt and change to liblinear 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, liblinear.dll will be generated in liblinear\windows.
- Refer Prerequisites for .NET Core on Windows](https://docs.microsoft.com/en-us/dotnet/core/windows-prerequisites?tabs=netcore2x)
- Open LibLinearDotNet\LibLinearDotNet.sln in Visual Studio
- Do build command for LibLinearDotNet project
- Install .NET Core 2.0 by following the official page
- Open LibLinearDotNet\src\LibLinearDotNet in console
- Type the following code in a console:
dotnet build -c Release
Or
dotnet build -c Debug