Skip to content
This repository was archived by the owner on Apr 17, 2026. It is now read-only.

Commit 9c5dff4

Browse files
committed
docs: switch installation instructions to git+https source
1 parent d536279 commit 9c5dff4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828

2929
> Поддерживаемые версии Python: **старше 3.8** (Python 3.9+).
3030
31-
### 1) Установка из PyPI
31+
### 1) Установка через GitHub (git+https)
3232

3333
```bash
34-
pip install dbase
34+
pip install "git+https://github.com/Danex-Exe/dbase.git"
3535
```
3636

3737
Проверка, что модуль установлен:
@@ -40,7 +40,7 @@ pip install dbase
4040
python -c "from dbase import DataBase; print(DataBase)"
4141
```
4242

43-
### 2) Установка для разработки (из исходников)
43+
### 2) Установка для разработки (локальный clone)
4444

4545
```bash
4646
git clone https://github.com/Danex-Exe/dbase.git
@@ -59,7 +59,7 @@ python -m venv .venv
5959
source .venv/bin/activate # Linux/macOS
6060
# .venv\Scripts\activate # Windows PowerShell
6161
pip install --upgrade pip
62-
pip install dbase
62+
pip install "git+https://github.com/Danex-Exe/dbase.git"
6363
```
6464

6565
---

0 commit comments

Comments
 (0)