Search Criteria
Package Details: python-depthai 2.26.0.0-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-depthai.git (read-only, click to copy) |
---|---|
Package Base: | python-depthai |
Description: | DepthAI Python Library |
Upstream URL: | https://github.com/luxonis/depthai-python |
Licenses: | MIT |
Submitter: | Vial |
Maintainer: | Vial |
Last Packager: | Vial |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2024-03-05 00:41 (UTC) |
Last Updated: | 2024-06-16 17:06 (UTC) |
Dependencies (15)
- libusb (libusb-gitAUR)
- python (python37AUR, python311AUR, python310AUR)
- cmake (cmake-gitAUR) (make)
- curl (curl-quiche-gitAUR, curl-http3-ngtcp2AUR, curl-gitAUR, curl-c-aresAUR) (make)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR) (make)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR, glibc-eac-rocoAUR) (make)
- python (python37AUR, python311AUR, python310AUR) (make)
- python-build (make)
- python-installer (python-installer-gitAUR) (make)
- sed (busybox-coreutilsAUR, sed-gitAUR) (make)
- mypy (mypy-gitAUR) (optional)
- python-numpy (python-numpy-flameAUR, python-numpy-gitAUR, python-numpy1AUR, python-numpy-mkl-binAUR, python-numpy-mklAUR, python-numpy-mkl-tbbAUR) (optional)
- python-opencv (python-opencv-cuda) (optional)
- python-psutil (optional)
- python-pyqt5 (python-pyqt5-sip4AUR, python-pyqt5-webkitAUR) (optional)
Latest Comments
soraxas commented on 2024-06-13 07:59 (UTC) (edited on 2024-06-13 08:09 (UTC) by soraxas)
The package is missing the dependencies of
python-build
,python-installer
andmypy
on my machine.Vial commented on 2024-06-06 00:27 (UTC)
Thanks @dreieck for your feedbacks. It should be better now even though one error remains. Depthai Core use a C++ package manager named 'hunter' which install some static libraries deep down in a folder of my choice which by default is the home user repository (~/.hunter). I didn't manage yet to place those files either in /usr/lib and then link dephtai-python, or find a less worst place in the system to hide those. Any suggestions are welcome, I'll try to fix this last one issue.
dreieck commented on 2024-06-04 14:43 (UTC)
namcap
gives errors about missing dependencies and missing installation of license file:Also, this
PKGBUILD
'sbuild()
installs stuff into the build user's home directory and references it in the built package.Both must not happen!:
Please fix.
Regards and thanks for the package!
dreieck commented on 2024-06-04 14:40 (UTC)
Please change
options=(!strip)
tooptions+=(!strip)
so that other pre-set options are not discarded.dreieck commented on 2024-06-04 14:38 (UTC)
package()
fails withYou missed to list
80-movidius.rules
in the source array and you reference it by../
.This must not be done!
It
$SRCDEST
or$BUILDDIR
environment variable are set (e.g. in/etc/makepkg.conf
) your assumptions of where those files are do not hold anymore.You must list every local file you use in the
source
array, and only acces it from$srcdir
or a subdirectory.dreieck commented on 2024-06-04 14:34 (UTC) (edited on 2024-06-04 19:05 (UTC) by dreieck)
Please use packaging according to the Arch Linux python package guidelines:
Download via
source
, usepython -m build
andpython -m installer
, do not usepip
!Regards!
dreieck commented on 2024-06-04 14:32 (UTC) (edited on 2024-06-04 14:33 (UTC) by dreieck)
This
PKGBUILD
downloads stuff inbuild()
.This should not happen.
Please, if you cannot make sure that everything is downloaded via the
source
array, then please download inprepare()
, so thatbuild()
can run offline.Regards and thanks for maintaining!