Skip to content

Commit 814c4ef

Browse files
authored
Update to 2025.2 (#3419)
1 parent a13ee3b commit 814c4ef

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

demos/c_api_minimal_app/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ BASE_OS ?= ubuntu24
2525

2626
ifeq ($(BASE_OS),ubuntu24)
2727
BASE_OS_TAG_UBUNTU ?= 24.04
28-
PACKAGE_URL ?="https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_ubuntu24.tar.gz"
28+
PACKAGE_URL ?="https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_ubuntu24.tar.gz"
2929
BASE_IMAGE ?= ubuntu:$(BASE_OS_TAG_UBUNTU)
3030
DIST_OS=ubuntu
3131
endif
3232
ifeq ($(BASE_OS),redhat)
3333
BASE_OS_TAG_REDHAT ?= 9.5
34-
PACKAGE_URL ="https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_redhat.tar.gz"
34+
PACKAGE_URL ="https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_redhat.tar.gz"
3535
BASE_IMAGE ?= registry.access.redhat.com/ubi9/ubi:$(BASE_OS_TAG_REDHAT)
3636
DIST_OS=redhat
3737
endif

demos/code_local_assistant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ ovms --rest_port 8000 --config_path ./models/config_all.json
107107
### Linux: via Docker
108108
```bash
109109
docker run -d --rm --device /dev/accel --group-add=$(stat -c "%g" /dev/dri/render* | head -n 1) -u $(id -u):$(id -g) \
110-
-p 8000:8000 -v $(pwd)/:/workspace/ openvino/model_server:2025.1 --rest_port 8000 --config_path /workspace/models/config_all.json
110+
-p 8000:8000 -v $(pwd)/:/workspace/ openvino/model_server:2025.2 --rest_port 8000 --config_path /workspace/models/config_all.json
111111
```
112112

113113
## Set Up Visual Studio Code

docs/deploying_server_baremetal.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ You can download model server package in two configurations. One with Python sup
1515
:sync: ubuntu-22-04
1616
Download precompiled package (without python):
1717
```{code} sh
18-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_ubuntu22.tar.gz
18+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_ubuntu22.tar.gz
1919
tar -xzvf ovms_ubuntu22.tar.gz
2020
```
2121
or precompiled package (with python):
2222
```{code} sh
23-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_ubuntu22_python_on.tar.gz
23+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_ubuntu22_python_on.tar.gz
2424
tar -xzvf ovms_ubuntu22_python_on.tar.gz
2525
```
2626
Install required libraries:
@@ -43,12 +43,12 @@ pip3 install "Jinja2==3.1.6" "MarkupSafe==3.0.2"
4343
:sync: ubuntu-24-04
4444
Download precompiled package (without python):
4545
```{code} sh
46-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_ubuntu24.tar.gz
46+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_ubuntu24.tar.gz
4747
tar -xzvf ovms_ubuntu24.tar.gz
4848
```
4949
or precompiled package (with python):
5050
```{code} sh
51-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_ubuntu24_python_on.tar.gz
51+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_ubuntu24_python_on.tar.gz
5252
tar -xzvf ovms_ubuntu24_python_on.tar.gz
5353
```
5454
Install required libraries:
@@ -71,12 +71,12 @@ pip3 install "Jinja2==3.1.6" "MarkupSafe==3.0.2"
7171
:sync: rhel-9.5
7272
Download precompiled package (without python):
7373
```{code} sh
74-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_redhat.tar.gz
74+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_redhat.tar.gz
7575
tar -xzvf ovms_redhat.tar.gz
7676
```
7777
or precompiled package (with python):
7878
```{code} sh
79-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_redhat_python_on.tar.gz
79+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_redhat_python_on.tar.gz
8080
tar -xzvf ovms_redhat_python_on.tar.gz
8181
```
8282
Install required libraries:
@@ -99,10 +99,17 @@ pip3 install "Jinja2==3.1.6" "MarkupSafe==3.0.2"
9999
:sync: windows
100100
Make sure you have [Microsoft Visual C++ Redistributable](https://aka.ms/vs/17/release/VC_redist.x64.exe) installed before moving forward.
101101

102-
Download and unpack model server archive for Windows:
102+
Download and unpack model server archive for Windows(with python):
103103

104104
```bat
105-
curl -L https://github.com/openvinotoolkit/model_server/releases/download/v2025.1/ovms_windows.zip -o ovms.zip
105+
curl -L https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_windows_python_on.zip -o ovms.zip
106+
tar -xf ovms.zip
107+
```
108+
109+
or archive without python:
110+
111+
```bat
112+
curl -L https://github.com/openvinotoolkit/model_server/releases/download/v2025.2/ovms_windows_python_off.zip -o ovms.zip
106113
tar -xf ovms.zip
107114
```
108115

0 commit comments

Comments
 (0)