python+vlc realizes video playback, you need to install the vlc module, use pip install vlc to install, there is an error solution that the module cannot be found

python+vlc realizes video playback, you need to install the vlc module, use pip install vlc to install, there is an error solution that the module cannot be found

Description of the problem——pip install vlc installation, there is an error that the module cannot be found, how to install this module?

image.png

image.png

problem causes

This module cannot be installed by module-name

Solution

the first method

Install

 pip install python-vlc

image.png

Then you can import the python module

import vlc

no error

You can use the following command to check whether it is installed

 

Guess you like

Origin blog.csdn.net/Deng872347348/article/details/127359659