Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install the VLC module in Python

Tags:

python

pip

vlc

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:\Users\rakeshb4\pip\pip.log
like image 748
Rakesh Bhagam Avatar asked Dec 18 '15 04:12

Rakesh Bhagam


1 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.

like image 53
frlan Avatar answered Nov 03 '22 15:11

frlan