pip install decord in linux/arm64
Hi, I want to install decord on arm64 linux architecture, but I found that there is no version(aarch64) for this architecture in pypi, how do I fix it? I'd be grateful for your answer.
@zhreshold Hello~
Has this issue been resolved?
Also ran into this issue, using linux arm64 device
pip install decord
ERROR: Could not find a version that satisfies the requirement decord (from versions: none)
ERROR: No matching distribution found for decord
I'm facing the same issue tryin to start project on Mac insider docker. It expects to find linux image for arm and can not find any.
3.732
3.732 Unable to find installation candidates for decord (0.6.0)
3.732
3.732 at /usr/local/lib/python3.11/site-packages/poetry/installation/chooser.py:73 in choose_for
3.735 69│
3.735 70│ links.append(link)
3.735 71│
3.735 72│ if not links:
3.735 → 73│ raise RuntimeError(f"Unable to find installation candidates for {package}")
3.736 74│
3.736 75│ # Get the best link
3.736 76│ chosen = max(links, key=lambda link: self._sort_key(package, link))
3.736 77│
3.736
3.736 Cannot install decord.
Are there any updates on this issue? I'm facing this problem as well
I successfully installed decord on Ubuntu 20.04.6 / aarch64. Here is my solution:
- Install record from source
- run
export LD_PRELOAD=/usr/lib/aarch64-linux-gnu/libffi.so.7, when you import decord and get error:OSError: /lib/aarch64-linux-gnu/libgobject-2.0.so.0: undefined symbol: ffi_type_uint32, version LIBFFI_BASE_7.0. reference issue here