Note, that this issue will ALWAYS occur during startup because the pyimgur module available on pip has not been updated with the one available on github.
In order to fix this you will have to directly edit the offending file, specifically changing the following:
from urlib import parse to from urllib.parse import parse. The program should run perfectly afterwards, assuming you've followed the rest of the guide.
Note, that this issue will ALWAYS occur during startup because the
pyimgur
module available on pip has not been updated with the one available on github.In order to fix this you will have to directly edit the offending file, specifically changing the following:
from urlib import parse
tofrom urllib.parse import parse
. The program should run perfectly afterwards, assuming you've followed the rest of the guide.