pytube not reachable?
See original GitHub issueToday I was working on my website and at the part where I get the video from youtube it didn’t finish loading, so I thought something is wrong with pytube.
I uninstalled it and tried to install it again with pip3 install pytube3
but nothing happend.
Then I tried with pip3 install git+https://gitub.com/nficano/pytube
and got an error:
ERROR: Command errored out with exit status 128: git clone -q https://gitub.com/nficano/pytube /private/var/folders/c6/kmgq6cxs13zbfw9vbmx197vw0000gn/T/pip-req-build-dood31uo Check the logs for full command output.
Issue Analytics
- State:
- Created 3 years ago
- Comments:17
Top Results From Across the Web
Pytube error when I'm trying download video - Stack Overflow
When I tried to download video with pytube there was error: pytube.exceptions.RegexMatchError: get_throttling_function_name: could not find ...
Read more >Issues · pytube/pytube - GitHub
pytube / pytube Public ... Question: Downloading multiple songs with pytube at the same time ... List of streams (broadcasts) is not available...
Read more >Exception handling — pytube 12.1.0 documentation
Pytube implements a number of useful exceptions for handling program flow. There are a number of cases where pytube simply cannot access videos...
Read more >pytube package is not working (error 410), how to fix it?
I have been trying to make a youtube video downloader using tkinter and pytube. It's giving me error for the gazillionth time. Please...
Read more >How to fix error downloading video from youtube with pytube
Go in the directory site-packages of your Python installation (see the video if you do not know where it is) and go into...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Was also having issues installing, came here to check if it was just me, and noticed:
@Kuehlhausvogel left out the
h
ingithub
in the initial command. Just ran it myself, and it went just fine (fixing my issue of not getting the latest from pip)Sure thing! Sorry I couldn’t figure out how to get pip to work, that’s really unusual. In the future, if something breaks, you can update your install by navigating to the pytube clone with
cd pytube
, then runninggit pull
(which downloads the latest version) andpython3 -m pip install .
to re-install it.