alexgisby / imgur-album-downloader

Python script/class to download an entire Imgur album in one go into a folder of your choice.
MIT License
340 stars 59 forks source link

ImportError: No module named request #23

Closed nodiscc closed 8 years ago

nodiscc commented 8 years ago
$ python imguralbum.py https://imgur.com/gallery/pv2ol
Traceback (most recent call last):
  File "imguralbum.py", line 18, in <module>
    import urllib.request, urllib.parse, urllib.error
ImportError: No module named request

$ apt-cache policy python-urllib3
python-urllib3:
  Installed: 1.13.1-1
szero commented 8 years ago

Try using python3 instead of python. I think that urllib3 for python 2.7 doesn't have this module.

nodiscc commented 8 years ago

Thanks it works. @alexgisby maybe you should reference that in the README -> https://github.com/alexgisby/imgur-album-downloader/pull/25