-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,10 @@ | |
Multi-dimensional dynamic arrays, function pointers, and other more complex types are in the works, but are currently not supported. | ||
## Installation and pre-requisites | ||
|
||
In order to be able to use `fuzz-utils`, you will need to install it first: | ||
To install `fuzz-utils`: | ||
|
||
```bash | ||
git clone [email protected]:crytic/fuzz-utils.git | ||
cd fuzz-utils | ||
pip3 install -e . | ||
pip install fuzz-utils | ||
``` | ||
|
||
These commands will install all the Python libraries and tools required to run `fuzz-utils`. However, it won't install Echidna or Medusa, so you will need to download and install the latest version yourself from its official releases ([Echidna](https://github.com/crytic/echidna/releases), [Medusa](https://github.com/crytic/medusa/releases)). | ||
|