In Kali, the python setup.py install, don't fount bs4
Setup.py .... install_requires=[ 'requests>=1.2.3', 'bs4' ]
FIX: ..... install_requires=[ 'requests>=1.2.3', 'beautifulsoup4' ]
The setup.py try download bs4 from https://pypi.python.org/pypi/bs4 and "Not found"
The correct link is: https://pypi.python.org/pypi/beautifulsoup4
Fixed with r333 https://sourceforge.net/p/wapiti/code/333/
Log in to post a comment.
The setup.py try download bs4 from
https://pypi.python.org/pypi/bs4 and "Not found"
The correct link is:
https://pypi.python.org/pypi/beautifulsoup4
Fixed with r333
https://sourceforge.net/p/wapiti/code/333/