matamorphosis / Scrummage

A Holistic OSINT and Threat Hunting Platform
GNU General Public License v3.0
502 stars 81 forks source link

Error starting Scrummage #15

Closed ottoscav closed 4 years ago

ottoscav commented 4 years ago

ubuntu@ubuntu:~/Scrummage/lib$ python3 Scrummage.py Traceback (most recent call last): File "Scrummage.py", line 20, in import os, re, plugin_caller, getpass, time, sys, threading, html, secrets, jwt, plugins.common.Connectors as Connectors, plugins.common.General as General, logging File "/home/ubuntu/Scrummage/lib/plugin_caller.py", line 1, in import threading, plugins.common.Connectors as Connectors, plugins.common.General as General File "/home/ubuntu/Scrummage/lib/plugins/common/General.py", line 4, in from bs4 import BeautifulSoup ModuleNotFoundError: No module named 'bs4'

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "Scrummage.py", line 3858, in sys.exit(str(e)) NameError: name 'sys' is not defined

matamorphosis commented 4 years ago

Have you followed the installation guide?

ottoscav commented 4 years ago

Yes, exactly on Ubuntu 18.04.

On Tue, Jul 28, 2020, 6:23 PM matamorphosis notifications@github.com wrote:

Have you followed the installation guide?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/matamorphosis/Scrummage/issues/15#issuecomment-665319866, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACAMXQVIHYI6MNYMTKHPGUTR55FV3ANCNFSM4PK2RVRA .

matamorphosis commented 4 years ago

Okay sure, if you're sure it was successful. You can try the following:

I can see in the error python3 can't locate the packages bs4 and sys. These aren't included in the installation as there is an assumption these packages come installed when you install python3. That being said, try running the following commands to get yourself out of trouble:

user@linux:~$ pip3 install bs4 user@linux:~$ pip3 install sys

However, if you are having trouble locating core python3 packages like "sys" (I've never had to install sys through pip3), you may want to try reinstalling python3.

ottoscav commented 4 years ago

This worked, except I had to do pip3 install os-sys instead of sys. Thanks.

On Tue, Jul 28, 2020 at 7:09 PM matamorphosis notifications@github.com wrote:

Okay sure, if you're sure it was successful. You can try the following:

I can see in the error python3 can't locate the packages bs4 and sys. These aren't included in the installation as there is an assumption these packages come installed when you install python3. That being said, try running the following commands to get yourself out of trouble:

user@linux:~$ pip3 install bs4 user@linux:~$ pip3 install sys

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/matamorphosis/Scrummage/issues/15#issuecomment-665339844, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACAMXQWQPV6NQOJ54PVOMSLR55LENANCNFSM4PK2RVRA .