Skip to content

Commit ee759b1

Browse files
committed
docs: updated to use offiical release #56
1 parent 4eb68f6 commit ee759b1

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ box.remove(person) # Delete
6767

6868
Getting started
6969
---------------
70-
Latest version: 4.0.0a0 (2024-05-15)
70+
Latest version: 4.0.0 (2024-05-28)
7171

7272
To install or update the latest version of ObjectBox, run this:
7373

7474
```bash
75-
pip install --upgrade --pre objectbox # "--pre" because you want to get the 4.0.0 alpha version
75+
pip install --upgrade objectbox
7676
```
7777
Now you are ready to use ObjectBox in your Python project.
7878

example/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
This directory contains a couple of examples that demonstrate capabilities of ObjectBox using the Python API.
44

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-
75
```shell
86
cd example # assuming you are in project root dir
97
python3 -m venv venv
108
source venv/bin/activate
11-
pip install --pre objectbox
9+
pip install objectbox
1210
```
1311

1412
The following examples are available from this directory:
@@ -52,7 +50,7 @@ This example application starts with a pre-defined set of capital cities and the
5250
It allows to search for nearest neighbors of a city (`city_neighbors`) or by coordinates (`neighbors`) as well as adding more locations (`add`).
5351

5452
```
55-
cd example/vector-search-cities
53+
cd vector-search-cities
5654
$ python main.py
5755
5856
Welcome to the ObjectBox vectorsearch-cities example. Type help or ? for a list of commands.

example/ollama/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ based on https://ollama.com/blog/embedding-models
2323
4. Install Python Bindings and ObjectBox:
2424

2525
pip install ollama
26-
pip install --pre objectbox~=0.7.0a
26+
pip install objectbox
2727

2828
Or:
2929

example/ollama/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
ollama
2-
objectbox~=0.7.0a
2+
objectbox
3+

0 commit comments

Comments
 (0)