如何在 Python 中安装 VLC 模块
How to install the VLC module in Python
我尝试使用 PIP 安装 VLC,但出现以下错误:
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
包 vlc
目前在 pypi 上似乎有问题。但是,您使用的是 Windows,并且此软件包似乎仅适用于 MacOS(根据描述)。
试试 python-vlc
。
我可以通过以下方式解决问题:pip install python-vlc
已解决 pip install python-vlc
我尝试使用 PIP 安装 VLC,但出现以下错误:
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
包 vlc
目前在 pypi 上似乎有问题。但是,您使用的是 Windows,并且此软件包似乎仅适用于 MacOS(根据描述)。
试试 python-vlc
。
我可以通过以下方式解决问题:pip install python-vlc
已解决 pip install python-vlc