본문 바로가기

Eureka/Linux

[Solution] Dia install error

Dia를 설치하려 할 때 발생한 에러이다. (Dia는 순서도를 그릴 수 있는 linux용 소프트웨어이다)

$./configure
...
configure: error: XML::Parser perl module is required for intltool


자 당황하지 말고 ...  libxml-parser-perl 패키지 안에 perl module for parsing MXL files 이 담겨 있기 때문에 설치 해주면 된다.

$sudo apt-get install libxml-parser-perl


다시 한번

$./configure
...
No package 'libxml-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GTK_CFLAGS
and GTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.


자 이번엔 뭐라고 하는 거냐... libxml-2.0에 약간의 문제가 있는 듯 하다..
그러면? 다시 설치 해주면 될 듯 하다...

$sudo apt-get install libxml2-dev


자 설치가 끝났으면 이제 아래 명령어를 순차대로 입력하자

$make
$make install