-
Notifications
You must be signed in to change notification settings - Fork 808
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
libpython missing #6812
Comments
We are also encountering the same issue when trying to run pytriton within a |
I guess this is only an issue for the python-build-standalone binaries uv uses by default. If you let uv create the venv with a Python binary from another source, e.g. your system Python installation or one installed via pyenv, it works just fine because they don't have a shared library dependency on $ uv venv --python /usr/bin/python3 system-py-venv
...
$ ldd system-py-venv/bin/python
linux-vdso.so.1 (0x00007ffc870c9000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f1233c94000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f1233c75000)
libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1 (0x00007f1233c4a000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f1233a69000)
/lib64/ld-linux-x86-64.so.2 (0x00007f1233d9f000) Judging by the sizes of these binaries (python-build-standalone: ~2 MB, pyenv/system: ~30 MB), I guess the latter just link libpython statically. So maybe uv should somehow find out whether the binary in question has a relative But this issue also messes with venvs created with python-build-standalone binaries independently of uv, so here's an issue on their side to maybe do something about it: |
libpython should be left in the environment. This is useful for us developing c libraries with python bindings. And in fact python expects this as well (look at the
not found
line below):Right now, it is instead being put in:
${HOME}.local/share/uv/python/cpython-3.11.9-linux-x86_64-gnu/lib
, which is great for and speed, but super awful for portability. Maybe there can be a flag for this? I thought theuv venv --relocatable
flag would help, but it does not. Maybe a--portable
flag would be good for this?Thanks for the awesome tool otherwise!
The text was updated successfully, but these errors were encountered: