How to install the VLC module in Python

Question:

I was trying to install VLC using PIP, but get the following error:

pip install VLC

Downloading/unpacking vlc
Cannot fetch index base URL https://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement vlc
Cleaning up...
No distributions at all found for vlc
Storing complete log in C:Usersrakeshb4pippip.log
Asked By: Rakesh Bhagam

||

Answers:

The packages vlc seems to have currently issues on pypi. However, you are on Windows and this package appears to be for MacOS only (based on description).

Try python-vlc instead.

Answered By: frlan

I could solve the problem with :

pip install python-vlc
Answered By: Georges Hart

solved with pip install python-vlc

Answered By: Xiaoxu Li

I could install this with: pip install python-vlc

Here is the link: https://pypi.org/project/python-vlc/

Answered By: Taie
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.