Thanks elextr. I did not build Geany or plugins with any special --prefix option. I just used defaults. Here are the exact steps I used to build both geany and plugins (I savied them from terminal scrollback):
``` sudo apt remove geany-common git clone https://github.com/geany/geany.git git clone https://github.com/geany/geany-plugins.git cd geany pip install rst2html sudo apt-get install intltool ./autogen.sh sudo make sudo make install cd ../geany-plugins sudo apt install libvte-2.91-dev ./autogen.sh --enable-debugger make sudo make install ``` Based on your description, I was able to fix my problem by adding a file `/etc/ld.so.conf.d/local.conf` which contains a single line that points to `/usr/local/lib`, then running `sudo ldconfig`. After that, Geany shows the Debugger plugin in the Plugin Manager. Yay! Is there a build step that I should have done differently? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/issues/1116#issuecomment-937932038
