Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No executable found matching command "dotnet-tool"

I'm trying to install Fake from the official site with the following command (provided at the site):

dotnet tool install fake-cli -g

But I am getting the following error:

No executable found matching command "dotnet-tool"

My dotnet version is 2.1.201, and I am running Windows 10 Professional, with all of the latest updates.

like image 390
Shredderroy Avatar asked Jul 04 '18 21:07

Shredderroy


1 Answers

The dotnet tool command is only installed with the release of .NET Core SDK version 2.1.300 and later. You need to update your SDK to make this command available.

like image 65
DavidG Avatar answered Oct 13 '22 16:10

DavidG