How to Install Fabric in Python on Linux? Last Updated : 31 Jan, 2022 Comments Improve Suggest changes Like Article Like Report Fabric is a Python library. This library is used to perform Linux shell commands remotely over SSH and yield handy Python objects in return. Or we can say that it is a high-level Python library and a command-line tool that uses SSH for application deployment or for administration tasks. It also performs operations like aborting execution, downloading files, uploading files, etc. In this article, we will look into the steps of installing the Fabric Library on the Linux Operating System. Features of Fabric: It is easy to install and use.It provides good support for parallel remote execution.It has well-maintained documentation.There is no need to learn another language to use Fabric.Requirements: Python3Python3-pipInstalling Fabric package on Linux using PIPTo install the Fabric package in Linux we have to follow the following steps: Step 1: First of all, we will install Python3 on the Linux system with the help of the following command. sudo apt-get install python3 Step 2: Now, we install the pip module which is required to install and manage the packages of Python3. So we use the following command: sudo apt install python3-pip Step 3: Now, install the Fabric package by using the following command. sudo pip3 install fabric Verifying Fabric package installation on Linux using PIP To verify if the Fabric package has been successfully installed in your system run the below command in Terminal: python3 -m pip show fabric You’ll get the below message if the installation is completed successfully without any error: Comment More infoAdvertise with us Next Article How to Install Fabric in Python on Linux? G gauravgandal Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads How to Install OpenCV for Python in Linux? Prerequisite: Python Language Introduction OpenCV is the huge open-source library for computer vision, machine learning, and image processing and now it plays a major role in real-time operation which is very important in todayâs systems. By using it, one can process images and videos to identify ob 2 min read How to Install Fabric in Python on MacOS? Fabric is a Python library for running shell commands remotely via SSH (Secure Shell), and in return, provides useful Python objects. It builds on Invoke (subprocess command execution and command line functionality) and Paramiko (SSH protocol implementation). In this article, we will explore simple 2 min read How to Install Python on Linux This guide explains how to install Python on Linux machines. Python has become an essential programming language for developers, data scientists, and system administrators. It's used for various applications, including web development, data science, automation, and machine learning.This comprehensiv 15+ min read How to Install Nose in Python on Linux? The nose is a Python package essentially needed for automation framework testing. Basically, Nose generates uni-test modules that will help to execute the testing result much better. Also, Nose provides another advantage in that it will auto-discover the test cases. Based on the test case result it 3 min read How to Install Nose 2 in Python on Linux? Nose 2 is a successor of the Nose package. It is used for testing Python applications. It provides different types of methods, modules, classes, test case levels, etc. It also provides built-in plugins which fulfill the specific need of the developer like tests coverage, profiling, etc. In this arti 2 min read Like