>>6133
Attempting to install the dependancy "Html_Table_Parser_Python3" the way you've got it written down (pip install git+git://github.com/schmijos/html-table-parser-python3.git ) causes pip to throw an error with setup.py not being found. What you actually want is (pip install git+git://github.com/
rachmadaniHaryono/html-table-parser-python3.git ) works fine. Running the code as-written from there throws this error message:
Traceback (most recent call last):
File "/usr/local/bin/i2vec-cli", line 11, in <module>
load_entry_point('i2vec-cli==0.1.0', 'console_scripts', 'i2vec-cli')()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/
init.py", line 561, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/
init.py", line 2631, in load_entry_point
return ep.load()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/
init.py", line 2291, in load
return self.resolve()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/
init.py", line 2297, in resolve
module =
import(self.module_name, fromlist=['
name'], level=0)
File "/usr/local/lib/python2.7/dist-packages/i2vec_cli/
main.py", line 15, in <module>
from html_table_parser import HTMLTableParser
File "/usr/local/lib/python2.7/dist-packages/html_table_parser/
init.py", line 1, in <module>
from .parser import HTMLTableParser
File "/usr/local/lib/python2.7/dist-packages/html_table_parser/parser.py", line 13, in <module>
from html.parser import HTMLParser
ImportError: No module named html.parser