notetau / geany-jedi-complete

a Geany plugin to provide code completion (Python) using jedi
GNU General Public License v2.0
32 stars 5 forks source link

Make error... #12

Open zahanzo opened 4 years ago

zahanzo commented 4 years ago

Output:

sudo make install mkdir -p lib/geany-complete-core/src/ g++ -c geany-complete-core/src/cc_plugin.cpp -O2 -fPIC pkg-config --cflags geany -std=c++0x -I./geany-complete-core/include -o lib/geany-complete-core/src/cc_plugin.o Package gtk+-3.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gtk+-3.0.pc' to the PKG_CONFIG_PATH environment variable Package 'gtk+-3.0', required by 'geany', not found In file included from geany-complete-core/src/cc_plugin.cpp:22: ./geany-complete-core/include/geanycc/cc_plugin.hpp:23:10: fatal error: geanyplugin.h: Arquivo ou diretório inexistente 23 | #include | ^~~~~~~ compilation terminated. make: *** [geany-complete-core/Makefile.core:40: lib/geany-complete-core/src/cc_plugin.o] Error 1

athulvis commented 3 years ago

Installing libgtk-3-dev solved this error for me.

sudo apt-get install libgtk-3-dev

aunicorn111 commented 1 year ago

Thank you!!