Open In App

How to Install Python-pytaglib package on Linux?

Improve
Improve
Like Article
Like
Save
Share
Report

Pytaglib is a package in Python used for audio tagging. It is a cross-platformed library that works on Windows, Linux, and macOS. This package supports mp3, flac, ogg, etc file formats. It also supports arbitrary, non-standard tag names. So, in this article, we will be installing the Pytaglib package in Python on Linux operating system.

Installing Pytaglib package on Linux using PIP

Requirements:

  1. Python3
  2. Python3-pip

To install the Pytaglib 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

Install-Latest-version-of-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

Install-pip-module

Step 3: Using the following command we install the Pytaglib package:

sudo pip3 install pytaglib

Install-Pytaglib-package

Verifying Pytaglib package installation on Linux using PIP

To verify if the Pytaglib package has been successfully installed in your system run the below command in Terminal:

python3 -m pip show pytaglib

You’ll get the following output if the installation is completed successfully in your system.

Verifying-package-installation


Last Updated : 25 Mar, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads