如何解决这个问题?pytube.exceptions.RegexMatchError:get\u ytplayer\u config:找不到配置模式的匹配项

2024-09-19 23:31:18 发布

您现在位置:Python中文网/ 问答频道 /正文

当我尝试使用pytube下载视频时,我遇到了这个错误。我正在使用最新版本的pytube

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

Tags: 版本configget视频错误notpatternsexceptions
1条回答
网友
1楼 · 发布于 2024-09-19 23:31:18

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

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

相关问题 更多 >