Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New RTC Release Errors on Import #136

Closed
Liamazing opened this issue Jan 12, 2024 · 3 comments
Closed

New RTC Release Errors on Import #136

Liamazing opened this issue Jan 12, 2024 · 3 comments

Comments

@Liamazing
Copy link

Looks like 0.7.0 errors on import. Here is the output that I get:

root@work:/# python3.9 -c "from livekit import rtc"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/local/lib/python3.9/dist-packages/livekit/rtc/__init__.py", line 31, in <module>
    from .audio_frame import AudioFrame
  File "/usr/local/lib/python3.9/dist-packages/livekit/rtc/audio_frame.py", line 16, in <module>
    from ._ffi_client import FfiHandle, FfiClient
  File "/usr/local/lib/python3.9/dist-packages/livekit/rtc/_ffi_client.py", line 53, in <module>
    ffi_lib = get_ffi_lib()
  File "/usr/local/lib/python3.9/dist-packages/livekit/rtc/_ffi_client.py", line 48, in get_ffi_lib
    with importlib.resources.path("livekit.rtc.resources", libname) as resource_path:
  File "/usr/lib/python3.9/importlib/resources.py", line 165, in path
    _common.as_file(files(package).joinpath(_normalize_path(resource)))
  File "/usr/lib/python3.9/importlib/resources.py", line 147, in files
    return _common.from_package(_get_package(package))
  File "/usr/lib/python3.9/importlib/_common.py", line 14, in from_package
    return fallback_resources(package.__spec__)
  File "/usr/lib/python3.9/importlib/_common.py", line 18, in fallback_resources
    package_directory = pathlib.Path(spec.origin).parent
  File "/usr/lib/python3.9/pathlib.py", line 1072, in __new__
    self = cls._from_parts(args, init=False)
  File "/usr/lib/python3.9/pathlib.py", line 697, in _from_parts
    drv, root, parts = self._parse_args(args)
  File "/usr/lib/python3.9/pathlib.py", line 681, in _parse_args
    a = os.fspath(a)
TypeError: expected str, bytes or os.PathLike object, not NoneType

This output came from a container that was built with the following Dockerfile:

FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y curl python3.9-dev=3.9.5-3* python3-pip
RUN curl -sSL https://get.livekit.io | bash
RUN python3.9 -m pip install --upgrade pip
RUN python3.9 -m pip install livekit==0.7.0 livekit-api==0.3.0 numpy opencv-python-headless
RUN curl -sSL https://get.livekit.io/cli | bash
@theomonnom
Copy link
Member

theomonnom commented Jan 12, 2024

Oups, reopening, going to release v0.7.1, this should fix this issue. Let me know if this is resolved

@Liamazing
Copy link
Author

Looks like it's resolved. Any plans to address with a test suite or the like?

@davidzhao
Copy link
Member

yup, that's on our list of TODOs :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants