You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 25, 2024. It is now read-only.
in my project I want to use dm-acme as rl framework. However, when importing e.g. from acme.jax import experiments I get an error for missing shared object file libpython3.8.so.1.0 required from dm-launchpad.
Error message:
File "/home/.../python3_deps_pypi__dm_launchpad/courier/python/client.py", line 30, in <module>
from courier.python import py_client
ImportError: libpython3.8.so.1.0: cannot open shared object file: No such file or directory
After an internal discussion we concluded that python 3.8 C extensions are not supposed to ask for libpython3.8.so.1.0 (This is also the conclusion in this thread).
So my question is, whether launchpad is built with a shared library python? If this is the case, is this on purpose or could this be changed to be linked with a static one?
Hi,
in my project I want to use dm-acme as rl framework. However, when importing e.g.
from acme.jax import experimentsI get an error for missing shared object filelibpython3.8.so.1.0required from dm-launchpad.Error message:
After an internal discussion we concluded that python 3.8 C extensions are not supposed to ask for
libpython3.8.so.1.0(This is also the conclusion in this thread).So my question is, whether launchpad is built with a shared library python? If this is the case, is this on purpose or could this be changed to be linked with a static one?