Skip to content

Commit

Permalink
correct typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
rodonile committed Jan 17, 2025
1 parent 0c8c12a commit 1624a04
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@ Given a PCAP and a configuration file, this scapy-based tool can reproduce traff

## Installation

You need to run the software with Python 3.7 or newer. We suggest to create a virtual environment and use the `requirements.txt` file to install the correct packages
You need to run the software with Python 3.7 or newer.

First make sure you have all the submodules pulled:
```
git submodule update --init
```

Then create the virtual environment and use the `requirements.txt` file to install the dependencies.
```
python3 -m venv venv
source venv/bin/activate
pip install -r requiremements.txt
pip install -r requirements.txt
```

## Usage
Expand Down

0 comments on commit 1624a04

Please sign in to comment.