Skip to content

Instantly share code, notes, and snippets.

@Vaviloff
Created August 11, 2024 12:52
Show Gist options
  • Select an option

  • Save Vaviloff/880997b89996b5c8ee5b109308ba2757 to your computer and use it in GitHub Desktop.

Select an option

Save Vaviloff/880997b89996b5c8ee5b109308ba2757 to your computer and use it in GitHub Desktop.

Error: libevent-2.1.so.7: cannot open shared object file

Install libevent from source:

wget https://github.com/libevent/libevent/releases/download/release-2.1.11-stable/libevent-2.1.11-stable.tar.gz
tar xvfz libevent-2.1.11-stable.tar.gz
cd libevent-2.1.11-stable
./configure --prefix=/usr/local/libevent/2_1_11
make
make install

Add to .zshrc

export LD_LIBRARY_PATH=/usr/local/libevent/2_1_11/lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment