Help to install _version in python (Windows)

-1

I am using a script in Python and after solving problems with the tabs I now have one in the modules:

from mainLib import 
File "C:\Python35-37\mainLib.py", lin 
import mechanize *
File "C:\Python35-37\lib\site-package 
ImportError: No module named '_version'

What is the name in easy_install for the module (implying that it is a module)? I can not find it.

    
asked by Alejandro 16.07.2016 в 23:52
source

2 answers

3

Unfortunately, mechanize does not work with python3. You'll have to look for alternatives such as robobrowser or mechanical soup

    
answered by 17.07.2016 в 03:36
0

Because you do not install python through the Anaconda distribution, it already comes with the included libraries and without it does not come with the one you need You can use pip install or conda install that are included in that distribution.

    
answered by 13.10.2016 в 22:21