File tree Expand file tree Collapse file tree 2 files changed +30
-9
lines changed
Expand file tree Collapse file tree 2 files changed +30
-9
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22Installation
33============
44
5- At the command line::
5+ The Python QuestDB client does not have any additional run-time dependencies and
6+ will run on any version of Python >= 3.7 on most platforms and architectures.
7+
8+ You can install it globally by running::
69
710 python3 -m pip install questdb
11+
12+
13+ Or, from within a virtual environment::
14+
15+ pip install questdb
16+
17+
18+ If you're using poetry, you can add ``questdb `` as a dependency::
19+
20+ poetry add questdb
21+
22+
23+ Verifying the Installation
24+ ==========================
25+
26+ If you want to check that you've installed the wheel correctly, you can run the
27+ following statements from a ``python3 `` interactive shell:
28+
29+ .. code-block :: python
30+
31+ >> > import questdb.ilp
32+ >> > buf = questdb.ilp.Buffer()
33+ >> > buf.row(' test' , symbols = {' a' : ' b' })
34+ < questdb.ilp.Buffer object at 0x 104b68240>
35+ >> > str (buf)
36+ ' test,a=b\n '
You can’t perform that action at this time.
0 commit comments