Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install PyMPlayer via python pip




PyMPlayer - Lightweight and dynamic MPlayer wrapper with a Pythonic API, it belongs to Classifiers:

- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- Environment :: X11 Applications :: Qt
- License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
- Programming Language :: Python :: 2.6
- Topic :: Multimedia
- Topic :: Multimedia :: Video
- Topic :: Multimedia :: Video :: Display

When you know about this project and you want to new install PyMPlayer to support your project or you get trouble as ModuleNotFoundError: No module named "PyMPlayer" or ImportError: cannot import name "PyMPlayer" in your project, let follow this tutorial to install PyMPlayer



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_PyMPlayer_env

- Active the virtual environment

test_PyMPlayer_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_PyMPlayer_env

- Active the virtual environment

source test_PyMPlayer_env/bin/active


Step 2: OK, now, let flow below content to start the installation PyMPlayer

To install PyMPlayer on Windows(CMD):

py -m pip install PyMPlayer

To install PyMPlayer on Unix/macOs:

pip install PyMPlayer


Step 3: If you want to install a specific PyMPlayer version, add ==<PyMPlayer version> to the end command line

Example:

pip install PyMPlayer==0.1.1


Please see the version list below table:

VersionReleased dateCommand
PyMPlayer 0.6.02011-03-03T08:50:36Windows:

py -m pip install PyMPlayer==0.6.0

Unix/macOs:

pip install PyMPlayer==0.6.0

PyMPlayer 0.5.02010-10-14T06:19:47Windows:

py -m pip install PyMPlayer==0.5.0

Unix/macOs:

pip install PyMPlayer==0.5.0

PyMPlayer 0.4.02009-02-10T05:27:24Windows:

py -m pip install PyMPlayer==0.4.0

Unix/macOs:

pip install PyMPlayer==0.4.0

PyMPlayer 0.3.02008-03-01T16:45:39Windows:

py -m pip install PyMPlayer==0.3.0

Unix/macOs:

pip install PyMPlayer==0.3.0

PyMPlayer 0.2.02008-01-13T04:31:12Windows:

py -m pip install PyMPlayer==0.2.0

Unix/macOs:

pip install PyMPlayer==0.2.0

PyMPlayer 0.1.12008-01-10T18:10:40Windows:

py -m pip install PyMPlayer==0.1.1

Unix/macOs:

pip install PyMPlayer==0.1.1


Step 4: Otherwise, you can install PyMPlayer from local archives:

Download the distribution file from PyMPlayer-0.6.0.tar.gz or the specific PyMPlayer version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PyMPlayer_downloaded_file>

On Unix/macOs:

pip install <path_to_PyMPlayer_downloaded_file>


List distribution:


Project link:

- Homepage