File tree 1 file changed +18
-5
lines changed
1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -70,14 +70,27 @@ cd warnet
70
70
71
71
## Install Warnet
72
72
73
- ### Optional: use a virtual Python environment such as ` venv `
73
+ The Warnet server and cli tool need to be installed using PIP:
74
74
75
- ``` bash
76
- python3 -m venv .venv # Use alternative venv manager if desired
77
- source .venv/bin/activate
78
- ```
75
+ > [ !TIP]
76
+ > Use a python virtual environment such as venv
77
+ > ``` bash
78
+ > python3 -m venv .venv # Use alternative venv manager if desired
79
+ > source .venv/bin/activate
80
+ > ` ` `
79
81
80
82
` ` ` bash
81
83
pip install --upgrade pip
82
84
pip install -e .
83
85
```
86
+
87
+ ### Experimental Rust cli tool
88
+
89
+ There is an experimental Rust cli tool which can be built using ` cargo ` :
90
+
91
+ ``` bash
92
+ # build
93
+ cargo build
94
+ # Run
95
+ ./target/debug/warcli help
96
+ ```
You can’t perform that action at this time.
0 commit comments