Search Criteria
Package Details: python-depthai 2.30.0.0-1
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: | 2025-06-04 19:11 (UTC) |
Dependencies (15)
- libusb (libusb-gitAUR)
- python
- cmake (cmake3AUR, cmake-gitAUR) (make)
- curl (curl-gitAUR, curl-c-aresAUR) (make)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc-libs-snapshotAUR) (make)
- glibc (glibc-gitAUR, glibc-eacAUR) (make)
- python (make)
- python-build (make)
- python-installer (make)
- sed (sed-gitAUR) (make)
- mypy (mypy-gitAUR) (optional)
- python-numpy (python-numpy-gitAUR, python-numpy1AUR, python-numpy-mkl-binAUR, python-numpy-mkl-tbbAUR, python-numpy-mklAUR) (optional)
- python-opencv (python-opencv-cuda) (optional)
- python-psutil (optional)
- python-pyqt5 (python-pyqt5-sip4AUR, python-pyqt5-webkitAUR, python-pyqt5-pre-releaseAUR) (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-installerandmypyon 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)
namcapgives 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.rulesin the source array and you reference it by../.This must not be done!
It
$SRCDESTor$BUILDDIRenvironment 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
sourcearray, and only acces it from$srcdiror 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 buildandpython -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
PKGBUILDdownloads stuff inbuild().This should not happen.
Please, if you cannot make sure that everything is downloaded via the
sourcearray, then please download inprepare(), so thatbuild()can run offline.Regards and thanks for maintaining!