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
Describe the bug
When I enable Python language in devenv.nix file and try to enter shell environment it fails with following error:
/nix/store/iw1vmh509hcbby8dbpsaanbri4zsq7dj-python3-3.10.10/bin/python: /nix/store/76l4v99sk83ylfwkz8wmwrm4s8h73rhd-glibc-2.35-224/lib/libc.so.6: version `GLIBC_2.36' not found (required by /nix/store/fcdkcrsrg289h6k33fwmfkhsdj55r6yr-libxcrypt-4.4.36/lib/libcrypt.so.2)
devenv shell
/nix/store/iw1vmh509hcbby8dbpsaanbri4zsq7dj-python3-3.10.10/bin/python: /nix/store/76l4v99sk83ylfwkz8wmwrm4s8h73rhd-glibc-2.35-224/lib/libc.so.6: version `GLIBC_2.36' not found (required by /nix/store/fcdkcrsrg289h6k33fwmfkhsdj55r6yr-libxcrypt-4.4.36/lib/libcrypt.so.2)
Version
Paste the output of $ devenv version here.
devenv: 0.6.3
The text was updated successfully, but these errors were encountered:
This is probably related to #749. The problems is that LD_LIBRARY_PATH is set to paths in devenvs packages. That includes glibc, so any application will be dynamically linked against the glibc from devenv. Many libraries (including libraries that devenv itself indirectly depends on) are not compatible with older/newer glibc versions.
Describe the bug
When I enable Python language in
devenv.nix
file and try to enter shell environment it fails with following error:To reproduce
Please provide an Short, Self Contained, Correct (Compilable), Example by creating a gist using
devenv.nix
,devenv.yaml
, and optionallydevenv.lock
.Make sure to include full logs and what you expected to happen.
devenv.yaml
devenv.nix
Version
Paste the output of
$ devenv version
here.The text was updated successfully, but these errors were encountered: