I'm trying to learn mechanize module but getting this import error while doing the basic thing
I got this error
Traceback (most recent call last):
File "C:/Users/HUNTER/PycharmProjects/Encryption/erp.py", line 2, in <module>
import mechanize
File "C:\Users\HUNTER\AppData\Local\Programs\Python\Python35-32\lib\site-packages\mechanize\__init__.py", line 119, in <module>
from _version import __version__
ImportError: No module named '_version'
by doing this
import mechanize
br = mechanize.Browser()
br.open("website")