From a6a2fc21daed4d59c72d63cf5209910d81f04543 Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Wed, 9 May 2018 09:33:14 +0200 Subject: [PATCH] Expand on NuGet installation --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb96b1488b..e231725c53 100644 --- a/README.md +++ b/README.md @@ -14,23 +14,25 @@ Along with these ML capabilities this first release of ML.NET also brings the fi ## Installation +[![NuGet Status](https://img.shields.io/nuget/v/Microsoft.ML.svg?style=flat)](https://www.nuget.org/packages/Microsoft.ML/) + ML.NET runs on Windows, Linux, and macOS - any platform where 64 bit [.NET Core](https://github.com/dotnet/core) or later is available. The current release is 0.1. Check out the [release notes](Documentation/release-notes/0.1/release-0.1.md). First ensure you have installed [.NET Core 2.0](https://www.microsoft.com/net/learn/get-started) or later. ML.NET also works on the .NET Framework. Note that ML.NET currently must run in a 64 bit process. -Once you have an app, you can install ML.NET NuGet from the .NET Core CLI using: +Once you have an app, you can install the ML.NET NuGet package from the .NET Core CLI using: ``` dotnet add package Microsoft.ML ``` -or from the package manager: +or from the NuGet package manager: ``` Install-Package Microsoft.ML ``` -Or alternatively you can add the Microsoft.ML package from within Visual Studio's NuGet package manager. +Or alternatively you can add the Microsoft.ML package from within Visual Studio's NuGet package manager or via [Paket](https://github.com/fsprojects/Paket). ## Building