How to Install Python's Pymediainfo Module on Windows?
Last Updated :
23 Jul, 2025
The Python's Pymediainfo Package is a wrapper around the MediaInfo library. In this article, we will look into the process of installing the Pymediainfo Package on Windows.
Pre-requisites:
The only thing that you need for installing the Scrapy module on Windows are:
Installing Pymediainfo Package on Windows using Conda:
If you want the installation to be done through conda, open up the Anaconda Powershell Prompt and use the below command:
conda install -c cavpp pymediainfo
Note: This module is compatible with Python 3.4 or less.
Type y for yes when prompted.
You will get a similar message once the installation is complete:
Make sure you follow the best practices for installation using conda as:
- Use an environment for installation rather than in the base environment using the below command:
conda create -n my-env
conda activate my-env
Verifying Pymediainfo Package Installation on Windows using Conda:
To verify if Pymediainfo Package has been successfully installed in your system run the below command in Anaconda Powershell Prompt:
conda list pymediainfo
You'll get the below message if the installation is complete:

Installing Pymediainfo Package on Windows using PIP:
If you want the installation to be done through PIP, open up the Command Prompt and use the below command:
pip install pymediainfo
You will get a similar message once the installation is complete:

Verifying Pymediainfo Package Installation on Windows using PIP:
To verify if the thePymediainfo Package has been successfully installed in your system run the below command in Command Prompt:
python -m pip show pymediainfo
You'll get the below message if the installation is complete:
Similar Reads
How to Install Python py-asn module on Windows? Py-asn is a Python module that is said to be an extension module. It provides\Enables a fast IP address to Autonomous System Numbers Lookups. It can perform both Current state and Historical state lookups with help from its contained packages. Input can be given as MRT/RIB BGP archive. The module is
2 min read
How to Install Python Six Module on Windows? The Six Library in python is used to wrap differences between Python 2 and Python 3 for systems that operate both on Python 2 and python 3. In this, article, we will look into the process of installing Python Six Library on Windows. Pre-requisites: The only thing that you need for installing the Scr
2 min read
How to Install Python-Pymediainfo Module on Linux? Pymediainfo is a Python package that is used to wrap around the MediaInfo library. It works on various operating systems like Windows, Linux, and macOS. Along with this, it has support for various versions of Python like Python3.6, 3.7, 3.8, etc. In this article, we will look into the process of ins
2 min read
How to Install Python Pyscreenshot on Windows? PyScreenshot is a Python module and built since the PIL ImageGrab module only supported Windows, although Pillow now supports Linux and macOS as well. Flexible backends, Wayland compatibility, occasionally superior performance, and optional sub-processing are some of the main features of PyScreensho
2 min read
How to Install py-gd module on Windows? GD is a python library. It provides various features and an async-ready API wrapper for the geometry dash. It is easy to use. It is used to implement the geometry dash API and is also very handy to work with object-oriented design. Installing GD module on WindowsMethod 1: Using pip to install GD Pac
2 min read
How to Install PyMedia for Python in Windows? PyMedia is a module of Python programming language that manipulates audio files. It supports the given audio formats, including avi, divx, MP3, Ogg, cdda, Wav, dvd, etc. This module allows users to perform various operations on media files such as parsing, multiplexing, encoding-decoding, etc. The P
2 min read