@@ -15,12 +15,12 @@ You can download model server package in two configurations. One with Python sup
1515:sync: ubuntu-22-04
1616Download 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
1919tar -xzvf ovms_ubuntu22.tar.gz
2020```
2121or 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
2424tar -xzvf ovms_ubuntu22_python_on.tar.gz
2525```
2626Install required libraries:
@@ -43,12 +43,12 @@ pip3 install "Jinja2==3.1.6" "MarkupSafe==3.0.2"
4343:sync: ubuntu-24-04
4444Download 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
4747tar -xzvf ovms_ubuntu24.tar.gz
4848```
4949or 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
5252tar -xzvf ovms_ubuntu24_python_on.tar.gz
5353```
5454Install required libraries:
@@ -71,12 +71,12 @@ pip3 install "Jinja2==3.1.6" "MarkupSafe==3.0.2"
7171:sync: rhel-9.5
7272Download 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
7575tar -xzvf ovms_redhat.tar.gz
7676```
7777or 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
8080tar -xzvf ovms_redhat_python_on.tar.gz
8181```
8282Install required libraries:
@@ -99,10 +99,17 @@ pip3 install "Jinja2==3.1.6" "MarkupSafe==3.0.2"
9999:sync: windows
100100Make 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
106113tar -xf ovms.zip
107114```
108115
0 commit comments