I\'m trying to install Fake
from the official site with the following command (provided at the site):
dotnet tool install fake-cli -g
In addition to DavidG answer:
To check .NET Core SDK versions installed run
dotnet --info
Even if the required SDK version is installed you may also need to switch to the required dotnet core SDK version by setting sdk section in global.json as described in Switch between dotnet core SDK versions , e.g.
{
"sdk": { "version": "2.1.403" }
}