From bb853bd50d15ceaf963631bf32ea2f71bc617186 Mon Sep 17 00:00:00 2001 From: echoesofwhoami Date: Sun, 25 Jan 2026 17:57:47 +0100 Subject: [PATCH] Added virtual environment installation and instructions to README --- README.md | 10 ++++++++++ requirements.txt | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 6d63360..ad869a4 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,16 @@ Installation Type 'sparta' in any terminal to launch the application. +Installation in virtual environment +---- + + git clone https://github.com/secforce/sparta.git + cd sparta + python3 -m venv .venv + source .venv/bin/activate + pip3 install -r requirements.txt + python3 sparta.py + Credits ---- diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..64133a0 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +PyQt5>=5.15.0 +SQLAlchemy>=1.3.0,<2.0.0 +requests>=2.25.0 +scapy>=2.4.0 +impacket>=0.9.0 \ No newline at end of file