Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dotnet Core - nuget: command not found

Ive installed dotnet core using the instuctions on my ubuntu machine. Now ive noticed that nuget is not installed.

bash: nuget: command not found

On my Mac nuget is available after installing dotnet core.

The reason i want this is that i need to push a package.

How to get nuget on my ubuntu machine?

like image 758
dknaack Avatar asked May 25 '26 08:05

dknaack


1 Answers

Dotnet provides dotnet nuget push command which pushes a package to the server and publishes it.

This link might be helpful:

  • Dotnet nuget push command
like image 91
Spec Avatar answered May 30 '26 10:05

Spec