首页 > 解决方案 > 如何解决这个问题?pytube.exceptions.RegexMatchError: get_ytplayer_config: 找不到匹配的 config_patterns

问题描述

当我尝试使用 pytube 下载视频时,出现此错误。我正在使用 pytube 的 letest 版本。

raise RegexMatchError(caller="get_ytplayer_config",
pattern="config_patterns")
pytube.exceptions.RegexMatchError:
get_ytplayer_config: could not find match for config_patterns

标签: pythonyoutubepytube

解决方案


您可能正在运行旧版本的 pytube。运行这些命令,它们可能会解决您的问题:

python -m pip uninstall pytube pytube3 pytubex
python -m pip install git+https://github.com/nficano/pytube

推荐阅读