cybrary-video-downloader
cybrary-video-downloader copied to clipboard
Cannot download error
Hello, I have Python 2.7.18 with beautifulsoup4 and youtube-dl already installed on my computer. I type: python cybrary-video-downloader.py --quality 720 --course "https://www.cybrary.it/course/malware-analysis/" and also with SSL enable and disable I always received:
Traceback (most recent call last):
File "cybrary-video-downloader.py", line 3, in <module>
import requests
ImportError: No module named requests
What would I do?
Same issue, did you solve it?
install request module "https://stackoverflow.com/questions/17309288/importerror-no-module-named-requests"
pip install requests
I had the same problem. I installed requests. It worked.
sudo python2 -m pip install requests.