-
Notifications
You must be signed in to change notification settings - Fork 17
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
version `GLIBC_2.33' not found on ubuntu #48
Comments
Adding some details: I'm on Ubuntu 23.1 which has GLIBC 2.35:
|
Same issue here |
The problem here is that, if you install emacs with snap, emacs will use libc.so.6 from snap:
And the version here is
I solved this by removing emacs from snap, and compile emacs by myself. |
I am also in Uuntu 20.04 and I did just that (uninstalled the snap version and compiled from source), but I still get the error. I would appreciate some advice.
I deleted the
|
You need to manually build the |
Thanks. This is indeed some progress. But with |
Worth compiling from within the snap emacs. First delete the emacs-zmq.so and run
From here. |
@eginhard (and everyone else on this ticket): My seeming unrelated issue: #45 (comment) When it goes well (happy path), So a true fix to this issue and #45 is either: |
@ayanamists I too compiled emacs myself. Worked like a charm. What @ayanamists said was precisely correct for my system when using For compiling it yourself, |
emacs snap on ubuntu 22.04: GLIBC snap 2.31 vs OS GLIBC 2.35. (pyenv/poetry + pyright/lsp python setup) Same problem. First, You need an absolutely clean package version under your ~/.emacs.d/elpa/zmq-* Then, with list-packages, intall only After install, open a Then configure compiler environment, and build: cd ~/.emacs.d/elpa
ls -lda zmq*
cd zmq*
ES=${EMACS_SNAP_DIR:-/snap/emacs/current}
export CC=${ES}/usr/bin/gcc-10
export CXX=${ES}/usr/bin/g++-10
export CFLAGS=--sysroot=${ES}
export LDFLAGS="--sysroot=${ES} -L${ES}/usr/lib"
printenv | grep -i -e ^cc= -e ^cxx= -e ^cflags= -e ^ldflags=
ls -l $CC $CXX
make all
alter library build, exit vterm and install after a restart, In the screenshot, my use-package failing tentative |
Hi
I'm running emacs 29 from ubuntu snap.
when trying to run
emacs-jupyter
'sjupyter-run-repl
I getDo you have any idea how to fix this?
Many thanks!
The text was updated successfully, but these errors were encountered: