jobroche / InSpy

A python based LinkedIn enumeration tool
https://www.leapsecurity.io/blog/linkedin-enumeration-inspy/
MIT License
537 stars 125 forks source link

ImportError: No module named BeautifulSoup #28

Open makmour opened 5 years ago

makmour commented 5 years ago

Fresh install under ParrotSec OS

sudo python2.7 InSpy.py -h Traceback (most recent call last): File "InSpy.py", line 7, in from lib.soup import * File "/usr/var/InSpy/lib/soup.py", line 1, in import BeautifulSoup, json ImportError: No module named BeautifulSoup

mgogic1 commented 5 years ago

Can you check what type of Beautiful Soup you got installed? It is possible that by accident BeautifulSoup 4 is installed.

TheCyberMonster commented 4 years ago

change import beautifulsoup, json to import json from bs4 import beautifulsoup and install beautifulsoup4 python library