How to install the ML.NET Command-Line Interface (CLI) tool
Learn how to install the ML.NET CLI (command-line interface) on Windows, Mac, or Linux.
The ML.NET CLI generates good quality ML.NET models and source code using automated machine learning (AutoML) and a training dataset.
Note
This topic refers to ML.NET CLI and ML.NET AutoML, which are currently in Preview, and material may be subject to change.
Pre-requisites
(Optional) Visual Studio 2019
You can run the generated C# code projects with Visual Studio by pressing the F5
key or with dotnet run
(.NET Core CLI).
Note: If after installing .NET Core SDK the dotnet tool
command is not working, sign out from Windows and sign in again.
Install
The ML.NET CLI is installed like any other dotnet Global Tool. You use the dotnet tool install
.NET Core CLI command.
The following example shows how to install the ML.NET CLI in the default NuGet feed location:
dotnet tool install -g mlnet
If the tool can't be installed (that is, if it is not available at the default NuGet feed), error messages are displayed. Check that the feeds you expected are being checked.
If installation is successful, a message is displayed showing the command used to call the tool and the version installed, similar to the following example:
You can invoke the tool using the following command: mlnet
Tool 'mlnet' (version 'X.X.X') was successfully installed.
You can confirm the installation was successful by typing the following command:
mlnet
You should see the help for available commands for the mlnet tool such as the 'classification' command.
Install a specific release version
If you're trying to install a pre-release version or a specific version of the tool, you can specify the framework using the following format:
dotnet tool install -g mlnet --framework <FRAMEWORK>
You can also check if the package is properly installed by typing the following command:
dotnet tool list -g
Uninstall the CLI package
Type the following command to uninstall the package from your local machine:
dotnet tool uninstall mlnet -g
Update the CLI package
Type the following command to update the package from your local machine:
dotnet tool update -g mlnet
Set up CLI suggestions (tab-based auto-completion)
Since the ML.NET CLI is based on System.CommandLine
, it has built-in support for tab completion.
An example of how tab auto completion works is shown in the following animation:
'Tab-based auto-completion' (parameter suggestions) works on Windows PowerShell and macOS/Linux bash but it won't work on Windows CMD.
To enable it, in the current preview version, the end user has to take a few steps once per shell, outlined below. Once this is done, completions will work for all apps written using System.CommandLine
such as the ML.NET CLI.
On the machine where you'd like to enable completion, you'll need to do two things.
Install the
dotnet-suggest
global tool by running the following command:dotnet tool install dotnet-suggest -g
Add the appropriate shim script to your shell profile. You may have to create a shell profile file. The shim script will forward completion requests from your shell to the
dotnet-suggest
tool, which delegates to the appropriateSystem.CommandLine
-based app.For bash, add the contents of dotnet-suggest-shim.bash to
~/.bash_profile
.For PowerShell, add the contents of dotnet-suggest-shim.ps1 to your PowerShell profile. You can find the expected path to your PowerShell profile by running the following command in your console:
echo $profile
(For other shells, look for or open an issue.)
Installation directory
The ML.NET CLI can be installed in the default directory or in a specific location. The default directories are:
OS | Path |
---|---|
Linux/macOS | $HOME/.dotnet/tools |
Windows | %USERPROFILE%\.dotnet\tools |
These locations are added to the user's path when the SDK is first run, so Global Tools installed there can be called directly.
Note: the Global Tools are user-specific, not machine global. Being user-specific means you cannot install a Global Tool that is available to all users of the machine. The tool is only available for each user profile where the tool was installed.
Global Tools can also be installed in a specific directory. When installed in a specific directory, the user must ensure the command is available, by including that directory in the path, by calling the command with the directory specified, or calling the tool from within the specified directory. In this case, the .NET Core CLI doesn't add this location automatically to the PATH environment variable.