How to Install Python-send2trash package on Linux? Last Updated : 24 Feb, 2022 Comments Improve Suggest changes Like Article Like Report Send2Trash in Python is a small package that sends files to the Trash (or Recycle Bin) natively and on all platforms like Windows, Linux, and macOS. Rather than deleting files, permanently this package sends the files in the trash box. So, in this article, we will be installing the Send2Trash package in Python on Linux operating system. Installing Send2Trash package on Linux using PIP Requirements: Python3Python3-pip To install the Send2Trash package in Linux we have to follow the following steps: Step 1: Install the latest version of Python3 on Linux Machine using the following command in the terminal: sudo apt-get install python3 Step 2: Now, using the following command we install the pip module which is required to install and manage all the packages of Python3: sudo apt install python3-pip Step 3: Using the following command we install the Send2Trash package: sudo pip3 install send2trash Verifying Send2Trash package installation on Linux using PIP To verify if the Send2Trash package has been successfully installed in your system run the below command in Terminal: python3 -m pip show send2trash You’ll get the following output if the installation is completed successfully in your system. Comment More infoAdvertise with us Next Article How to Install Python-send2trash package on Linux? A abhishekgandal324 Follow Improve Article Tags : How To Installation Guide Geeks Premier League Geeks-Premier-League-2022 how-to-install Similar Reads How to Install Python RSA Package on Linux? Python-RSA is an RSA implementation written entirely in Python. According to PKCS#1 version 1.5, it provides encryption and decryption, signing and checking signatures, and key creation. It can be used both on the command line and as a Python library. Installing Python RSA on Linux:Method 1: Using p 2 min read How to Install Python-pyzmail package on Linux? Pyzmail is a high-level Python mail library. It has methods and classes that make reading, writing, and sending emails easier. There's no reason why managing emails with Python should be more complex than with popular mail clients like Outlook or Thunderbird. The intricacy of the MIME structure and 2 min read How to Install Packages in Python on Linux? To install a package in python, we use pip. The pip is a python package manager. In this tutorial, we will be discussing how we can install packages in python on a Linux system. To install packages in python on Linux, we must have python and pip installed on our Linux machine. As python comes preins 2 min read How to Install python-YAML package on Linux? PyYAML is a special Python library for the package that is often used for the configuration of files and also can be used for data exchange purposes. PyYAML package is a Python YAML parser that permits the user to write YAML data and also parse it. PyYAML library is quite similar to the JSON library 2 min read How to Install PyOpenGL package on Linux? PyOpenGL library in Python language is an implementation of OpenGL in Python. PyOpenGL library consists of built-in handy graphical and audio libraries. PyOpenGL can be used with the PyGame library which is used for Game Development or GUI game development. PyOpenGL is a cross-platform binding libra 2 min read Like