LM/Install OpenVINO: Difference between revisions
< LM
Jump to navigation
Jump to search
| Line 22: | Line 22: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
if [ -z "$ | if [ -z "$TMUX" ]; then | ||
source /opt/intel/openvino_2026/setupvars.sh | source /opt/intel/openvino_2026/setupvars.sh | ||
export GGML_OPENVINO_DEVICE=GPU | export GGML_OPENVINO_DEVICE=GPU | ||
fi | fi | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 17:32, 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 "$TMUX" ]; then
source /opt/intel/openvino_2026/setupvars.sh
export GGML_OPENVINO_DEVICE=GPU
fi