On Jun 24, 2016, at 9:42 PM, Yuling Liu wrote: > I am trying to install wget on my mac. I used homebrew to do so and I can > actually use wget --help
Ok, so you've successfully installed the wget program. > but when I try to run my script it shows ImportError: > No module named wget. Do you why this could happen? Sounds like you either haven't installed the wget python module, or you've installed it for a different version of python than the one you're running. The python module is a separate piece of software, distinct from the wget program. You can get it here: https://pypi.python.org/pypi/wget
