I apologize for a newbie Python question.
I have a script that has
import mechanize
which gives the error:
File "/usr/local/lib/python3.5/dist-packages/mechanize/__init__.py", line 122, in <module> from _mechanize import \
ImportError: No module named '_mechanize'
I would think this means the module isn't installed or initialized, but when I open a BASH and type:
$ pip3.5 install mechanize
...this gives the error
Requirement already satisfied: mechanize in /usr/local/lib/python3.5/dist-packages
I looked here and here. The latter comes close, but I think I'm using the right pip edition.
Sorry for what I'm sure is awful newbie nomenclature. I suspect there's a difference between mechanize and _mechanize, but I don't know what it is.