You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project allows you to benchmark your blockchain infrastructure. It uses [Locust](https://docs.locust.io/en/stable/index.html) under the hood.
27
31
@@ -47,7 +51,14 @@ Check out the [docs](docs/PROFILE.md) for more information about the profile cre
47
51
48
52
### Using pip
49
53
50
-
> ⚠️ Installation using pip is not supported yet.
54
+
```shell
55
+
pip install chainbench
56
+
```
57
+
58
+
After installation, you can run the tool using the following command:
59
+
```shell
60
+
chainbench start --help
61
+
```
51
62
52
63
### Using Poetry
53
64
@@ -61,20 +72,22 @@ Install dependencies:
61
72
cd chainbench && poetry install --without dev
62
73
```
63
74
64
-
You might need to run the following command before running the tool:
75
+
When installing using Poetry, you can run the tool using the following command:
65
76
```shell
66
-
poetry shell
77
+
poetry run chainbench start --help
67
78
```
68
79
69
80
## Example Usage
81
+
All the examples below assume that you have installed the tool using `pip`. If you installed it using `poetry`, replace `chainbench` with `poetry run chainbench`.
82
+
70
83
To learn about the parameters and flags, run the following command:
0 commit comments