File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff 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
88Officially 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+ ```
You can’t perform that action at this time.
0 commit comments