IgnoredAmbience / yahoo-group-archiver

Scrapes and archives a Yahoo groups email archives, photo galleries and file contents using the non-public API
MIT License
93 stars 46 forks source link

ImportError: No module named requests #89

Closed Sadi58 closed 4 years ago

Sadi58 commented 4 years ago

Thanks a lot for working on this! However, after following all the steps carefully, I've got the error message below in Linux Mint:

Traceback (most recent call last):
  File "./yahoo.py", line 3, in <module>
    from yahoogroupsapi import YahooGroupsAPI
  File "./yahoogroupsapi.py", line 14, in <module>
    import requests  # Must be imported after capture_http
ImportError: No module named requests

Any ideas?

Pablo2m commented 4 years ago

Try executing this in the console: "pip install requests" (without the quotes)

Sadi58 commented 4 years ago

@Pablo2m Thank you, it worked!