First of all, download pytube. (** Note that this needs to be uninstalled later. Please wait until the end before installing **)
pip install pytube
I typed in the command line and downloaded pytube. However, when I actually run it,
Like the image above ImportError: cannot import name 'quote' from 'pytube.compat' Error has occurred.
When I looked it up,
https://github.com/nficano/pytube/issues/591
There was a similar question in the pytube issues here and a solution was offered. Enter the following on the command line:
pip uninstall pytube
pip install pytube3
Recommended Posts