ptscotch
다음 명령으로 설치했습니다 .
sudo apt-get install ptscotch
그런 다음 Pastix 라이브러리를 컴파일하고 싶지만 오류가 발생합니다.
symbol/src/dof.c:54:22: fatal error: ptscotch.h: No such file or directory
그래서 파일을 찾으려고 노력했지만 ptscotch.h
아무것도 찾지 못했습니다. Pastix가 내 홈 폴더에서 찾고 있는 것 같은데 "스카치 폴더"도 없고 ptscotch.h
or에도 파일이 없습니다./usr/include
/usr/local/include
그럼 이 파일은 어디서 찾아야 할까요? 아니면 저장소의 다른 패키지에 포함되어 있습니까?
답변1
이 명령은 apt-file
특정 파일 이름을 가진 패키지를 검색하는 데 유용합니다.
apt-get install apt-file
apt-file update
apt-file search ptscotch.h
그러면 패키지 이름(libptscotch-dev)과 검색어로 찾은 파일이 생성됩니다. 그런 다음 다음을 통해 찾은 패키지를 설치하십시오 apt-file
.
apt-get install libptscotch-dev