LM/Install OpenVINO: Difference between revisions

From Fundamental Ramen
< LM
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Install ==
== Install ==


'''Find the latest version''':
'''Find latest version from''':
 
https://storage.openvinotoolkit.org/repositories/openvino/packages/
https://storage.openvinotoolkit.org/repositories/openvino/packages/


'''Download and install'''
'''Download and install''':
 
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
sudo mkdir /opt/intel
sudo mkdir /opt/intel
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2026.2.1/linux/openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64.tgz --output openvino_2026.2.1.tgz
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2026.2.1/linux/openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64.tgz --output openvino_2026.2.1.tgz
tar -xf openvino_2026.2.1.tgz
tar -xf openvino_2026.2.1.tgz
sudo mv openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64 /opt/intel/openvino_2026.2.1
sudo mv openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64 /opt/intel/openvino_2026.2.1
cd /opt/intel/openvino_2026.2.1
cd /opt/intel/openvino_2026.2.1
sudo -E ./install_dependencies/install_openvino_dependencies.sh
sudo -E ./install_dependencies/install_openvino_dependencies.sh
ln -s /opt/intel/openvino_2026.2.1 /opt/intel/openvino_2026
</syntaxhighlight>
== .bashrc ==
<syntaxhighlight lang="bash">
if [ -z "$STY" ]; then
  source /opt/intel/openvino_2026/setupvars.sh
  export GGML_OPENVINO_DEVICE=GPU
fi
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 10:41, 13 August 2026

Install

Find latest version from:

https://storage.openvinotoolkit.org/repositories/openvino/packages/

Download and install:

sudo mkdir /opt/intel
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2026.2.1/linux/openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64.tgz --output openvino_2026.2.1.tgz

tar -xf openvino_2026.2.1.tgz
sudo mv openvino_toolkit_ubuntu24_2026.2.1.21919.ede283a88e3_x86_64 /opt/intel/openvino_2026.2.1

cd /opt/intel/openvino_2026.2.1
sudo -E ./install_dependencies/install_openvino_dependencies.sh
ln -s /opt/intel/openvino_2026.2.1 /opt/intel/openvino_2026

.bashrc

if [ -z "$STY" ]; then
  source /opt/intel/openvino_2026/setupvars.sh
  export GGML_OPENVINO_DEVICE=GPU
fi