You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: example/README.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,11 @@
2
2
3
3
This directory contains a couple of examples that demonstrate capabilities of ObjectBox using the Python API.
4
4
5
-
As we are currently short before releasing 4.0 version, please install the pre-release version of `objectbox` from PyPI via `pip`; for example, on UN*X-flavour platforms:
6
-
7
5
```shell
8
6
cd example # assuming you are in project root dir
9
7
python3 -m venv venv
10
8
source venv/bin/activate
11
-
pip install --pre objectbox
9
+
pip install objectbox
12
10
```
13
11
14
12
The following examples are available from this directory:
@@ -57,7 +55,7 @@ This example application starts with a pre-defined set of capital cities and the
57
55
It allows to search for nearest neighbors of a city (`city_neighbors`) or by coordinates (`neighbors`) as well as adding more locations (`add`).
58
56
59
57
```
60
-
cd example/vector-search-cities
58
+
cd vector-search-cities
61
59
$ python main.py
62
60
63
61
Welcome to the ObjectBox vectorsearch-cities example. Type help or ? for a list of commands.
0 commit comments