Added installation information (#1)
Browse files- Added installation information (3f0f644edc1be2ff14067468bf7eabf7a02ec09c)
- Update git repo name (4bb68f2742d4a9410bd0b57d22f9b9b82f8e6ec8)
Co-authored-by: Vorobev <[email protected]>
README.md
CHANGED
|
@@ -68,6 +68,23 @@ PROMPT = """Ниже указан текст. Ты должен присвоит
|
|
| 68 |
|
| 69 |
3. GeRaCl architecture. Detailed information about this architecture is located in **Training Detais** section.
|
| 70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
|
| 72 |
## Usage
|
| 73 |
|
|
|
|
| 68 |
|
| 69 |
3. GeRaCl architecture. Detailed information about this architecture is located in **Training Detais** section.
|
| 70 |
|
| 71 |
+
## Installation
|
| 72 |
+
|
| 73 |
+
Clone and install directly from GitHub:
|
| 74 |
+
|
| 75 |
+
```bash
|
| 76 |
+
git clone https://github.com/deepvk/geracl
|
| 77 |
+
cd geracl
|
| 78 |
+
|
| 79 |
+
pip install -r requirements.txt
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
Verify your installation:
|
| 83 |
+
|
| 84 |
+
```python
|
| 85 |
+
import geracl
|
| 86 |
+
print(geracl.__version__)
|
| 87 |
+
```
|
| 88 |
|
| 89 |
## Usage
|
| 90 |
|