How to Install NuGet from Command Line on Linux? Last Updated : 09 Jun, 2022 Comments Improve Suggest changes Like Article Like Report NuGet is the package manager for the .NET framework. It's very much useful for developers as developers can create, publish and consume packages. The package format of NuGet consists of a single ZIP file with the extension of .nupkg and which is the DLL compiled code like the package’s version number. A NuGet package manager is a cross-platformed manager which can work with various operating systems like Windows, Linux, and Mac. So, in this article, we will be installing the NuGet packager manager for .NET in Linux operating system by using a terminal or command line. Installing a NuGet on Linux using TerminalTo install the NuGet in Linux we have to follow the following steps: Step 1: First of all we update the Linux system using the given command: sudo apt-get update -y Step 2: Now we use the following command to install the NuGet Package Manager: sudo apt-get install -y nuget Step 3: Checking the details of the operating system. cat /etc/issue Verifying NuGet installation on Linux To verify if the NuGet has been successfully installed in your system run the below command in Terminal: nuget You’ll get the following output if the installation of NuGet is completed successfully in your system. Uninstalling NuGet from Linux using Terminal Step 1: To permanently remove the NuGet from Linux we use the following command in the terminal: sudo apt remove nuget Step 2: You can see that NuGet has been removed from Linux as when we run the command "nuget" we get the error "command not found: nuget". Comment More infoAdvertise with us Next Article How to Install NuGet from Command Line on Linux? A abhishekgandal324 Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads How to Install .NET on Linux? .NET is a free, cross-platform, open-source developer platform for building many different types of applications.With .NET you can build various kinds of applications including :Web ApplicationMobile AppsDesktop AppsGamesIOTYou can write .NET apps in one of the following languages :Â C#F#Visual basic 1 min read How to Install and Run curlie Command on Linux? Curl has been replaced by the more recent Curlie command, which provides a better command-line web request experience. This article will lead you through the installation process and show you how to use Curlie efficiently if you want to install it on Linux. Installing Linux curlie is simple, regardl 4 min read How to Install Git on Windows Command Line? Git is an open-source and free, decentralized version control system designed to handle projects of all sizes with speed and efficiency. Basically, it is a software tracking application that is commonly used to monitor projects across several teams. The best way of downloading and installing Git on 3 min read How to Install MongoDB Compass on Linux? MongoDB is a free, open-source, cross-platform, document-oriented database. It is also classified as a non-SQL database program. Compass is an interactive tool for querying, optimizing & analyzing MongoDB data. It works in a visual environment. It can be installed in any operating system like Wi 1 min read How to Install Netbeans on a Linux NetBeans is an open-source Integrated Development Environment (IDE) primarily for Java programming, but it also supports various other programming languages. It is used to develop mobile applications, desktop applications, and web applications. This guide will help you install NetBeans on a Linux sy 4 min read How to Install Xcode Command Line Tools? Xcode has a bundle of tools, used for development by developers to build apps for Apple platforms. Xcode also, easily lets the user manage the entire development workflow, creating the app, testing the app, optimizing the app, and submitting it to the App Store. Xcode is an IDE(Integrated Developmen 5 min read How to Install and Configure Nginx from Source on Linux Nginx is written in C language by Igor Sysoev to overcome the C10K problem (i.e. Concurrently handling 10k(ten thousand) connections). The problem was how to optimize the network socket to handle numerous clients at the same time. Nginx is a solution to that problem. It is a free and open-source sof 4 min read How to Install Node.js on Linux Installing Node.js on a Linux-based operating system can vary slightly depending on your distribution. This guide will walk you through various methods to install Node.js and npm (Node Package Manager) on Linux, whether using Ubuntu, Debian, or other distributions.PrerequisitesA Linux System: such a 6 min read How to Install NLTK on Linux? NLTK is Natural Language Tool Kit. It is used to build python programming. It helps to work with human languages data. It gives a very easy user interface. It supports classification, steaming, tagging, etc. In this article, we will look into the process of installing NLTK on Linux. Installing NLTK 1 min read How to Install NuPIC on Linux? NuPIC (short for "Numenta Platform for Intelligent Computing") is an open-source platform for machine learning and artificial intelligence. It was developed by Numenta, a company founded by Jeff Hawkins, the creator of the PalmPilot and the co-founder of Handspring. NuPIC is based on the theory of t 4 min read Like