Skip to content

Commit 91c8504

Browse files
authored
Update README.md
1 parent 311ef82 commit 91c8504

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,32 @@ YDB Python SDK
66
[![Style checks](https://github.com/ydb-platform/ydb-python-sdk/actions/workflows/style.yaml/badge.svg)](https://github.com/ydb-platform/ydb-python-sdk/actions/workflows/style.yaml)
77

88
Officially supported Python client for YDB.
9+
10+
## Quickstart
11+
12+
### Prerequisites
13+
14+
- Python 3.5 or higher
15+
- `pip` version 9.0.1 or higher
16+
17+
If necessary, upgrade your version of `pip`:
18+
19+
```sh
20+
$ python -m pip install --upgrade pip
21+
```
22+
23+
If you cannot upgrade `pip` due to a system-owned installation, you can
24+
run the example in a virtualenv:
25+
26+
```sh
27+
$ python -m pip install virtualenv
28+
$ virtualenv venv
29+
$ source venv/bin/activate
30+
$ python -m pip install --upgrade pip
31+
```
32+
33+
Install YDB python sdk:
34+
35+
```sh
36+
$ python -m pip install ydb
37+
```

0 commit comments

Comments
 (0)