Skip to content

Commit 2e3e4c2

Browse files
update README
1 parent e668207 commit 2e3e4c2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,34 @@ For more details, see also [https://www.researchgate.net/publication/386212136_S
1010

1111
## 1 - Installation
1212

13+
From PyPI:
1314
```bash
1415
pip install genbooster
1516
```
17+
From GitHub:
18+
```bash
19+
pip install git+https://github.com/Techtonique/genbooster.git
20+
```
21+
22+
I might be required to install Rust and Cargo first:
23+
24+
Command line:
25+
```bash
26+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
27+
```
28+
29+
Python:
30+
```python
31+
import os
32+
os.environ['PATH'] = f"/root/.cargo/bin:{os.environ['PATH']}"
33+
```
34+
35+
Command line:
36+
```bash
37+
echo $PATH
38+
rustc --version
39+
cargo --version
40+
```
1641

1742
## 2 - Usage
1843

0 commit comments

Comments
 (0)