Package Details: openvino 2025.1.0-1

Git Clone URL: https://aur.archlinux.org/openvino.git (read-only, click to copy)
Package Base: openvino
Description: A toolkit for optimizing and deploying deep learning models
Upstream URL: https://docs.openvino.ai/
Licenses: Apache-2.0, LicenseRef-custom
Conflicts: intel-openvino
Provides: intel-openvino
Replaces: intel-openvino
Submitter: dbermond
Maintainer: dbermond
Last Packager: dbermond
Votes: 14
Popularity: 0.71
First Submitted: 2020-12-23 22:29 (UTC)
Last Updated: 2025-04-11 00:44 (UTC)

Sources (27)

Latest Comments

1 2 3 4 5 6 .. 8 Next › Last »

rait commented on 2025-04-30 14:09 (UTC)

makepkg fails for me. I've seen a similar log under openvino-intel-npu-plugin reported by another user.

CMake Error in src/bindings/python/src/pyopenvino/CMakeLists.txt:
  Imported target "pybind11::headers" includes non-existent path

    "/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.



CMake Error in src/bindings/python/src/pyopenvino/frontend/onnx/CMakeLists.txt:
  Imported target "pybind11::headers" includes non-existent path

    "/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.



CMake Error in src/bindings/python/src/pyopenvino/frontend/tensorflow/CMakeLists.txt:
  Imported target "pybind11::headers" includes non-existent path

    "/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.



CMake Error in src/bindings/python/src/pyopenvino/frontend/paddle/CMakeLists.txt:
  Imported target "pybind11::headers" includes non-existent path

    "/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.



CMake Error in src/bindings/python/src/pyopenvino/frontend/pytorch/CMakeLists.txt:
  Imported target "pybind11::headers" includes non-existent path

    "/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.



CMake Error in src/bindings/python/src/pyopenvino/frontend/jax/CMakeLists.txt:
  Imported target "pybind11::headers" includes non-existent path

    "/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.



-- Generating done (1.4s)
CMake Generate step failed.  Build files cannot be regenerated correctly.
==> ERROR: A failure occurred in build().
    Aborting...

dbermond commented on 2025-04-11 00:49 (UTC)

@WhitePr do not move or symlink libraries tracked by pacman in your system directories, as this can completely mess your system. Please do not advise such things. I've pushed a fix for the issue alongside version 2025.1.0, and now device query is working fine.

WhitePr commented on 2025-04-10 03:27 (UTC) (edited on 2025-04-10 03:28 (UTC) by WhitePr)

For users who can't find an available device, moving or linking the libraries in /usr/lib/openvino/ to /usr/lib/ will solve the problem.

I'm not sure why, it may be that openvino does not search for /usr/lib/openvino/ when searching for plugins.

dbermond commented on 2025-04-07 23:52 (UTC)

@ar4ca you need to import the pgp key. See:

https://wiki.archlinux.org/title/Makepkg#Signature_checking

https://wiki.archlinux.org/title/GnuPG#Searching_and_receiving_keys

ar4ca commented on 2025-04-07 22:59 (UTC) (edited on 2025-04-07 23:00 (UTC) by ar4ca)

makepkg -i gave me the below error, not sure how to go about it.

    020-openvino-disable-werror.patch ... Passed
    030-openvino-level-zero-disable-werror.patch ... Passed
    040-openvino-protobuf23-fix.patch ... Passed
==> Verifying source file signatures with gpg...
    openvino git repo ... FAILED (unknown public key B5690EEEBB952194)
==> ERROR: One or more PGP signatures could not be verified!

cesman commented on 2025-02-09 20:52 (UTC) (edited on 2025-02-10 08:57 (UTC) by cesman)

I cannot get it to work at all. Like @drzecki, the package built without issue. After the build and install, I did note the new package is quite smaller than the last (openvino-2024.6.0-1-x86_64) 27.2 vs 43.6 MiB.

After installing, attempting to run my program results in "no module named openvino". If I installed the previous version, no error is reported and my program runs as expected.

So I missed that python-openvino is split into a seperate package now. Once I built and installed it, my application worked. However OpenVINO doesn't like "AUTO" or "CPU" as a device name. Guess I need to research that.

import openvino as ov
core = ov.Core()
print(core.available_devices)

Returns an empty list. I've tried this on a couple AMD systems and an 6th gen Intel i5 CPU.

drzecki commented on 2025-02-09 20:30 (UTC)

Hey, I installed the package on my lunar lake system. Build seemed successful, no errors whatsoever.

core.get_available_devices() however returns in both python and c++ an empty list, neither CPU, nor GPU, nor NPU seems to be recognized.

All extensions (cpu, gpu, npu...) are present under /usr/lib/openvino/ intel-npu-drier version 1.13 is installed. kernel: linux-zen-6.13.2

Anyone with similar problem / has an idea how to solve this?