1.tar.gz 파일 다운로드
https://www.dealii.org/download.html
deal.II Downloads
Several docker images with full installations of deal.II and (almost) all its dependencies are available on Docker HUB. These images are guaranteed to work identically on Mac OS, Linux, Windows, on Travis CI, and on gitlab CI. See, for example, the Wiki pa
www.dealii.org
2. cmake를 통한 설치
우선 cmake가 설치가 되어있어야 할것입니다.
$ sudo yum install cmake
위와 같은 명령어를 통해서 cmake를 설치해줍시다. (centOs 기준입니다.)
파일을 다운받으셨다면 압축을 풀어줍시다.

압축을 푼후에 build 폴더를 만들줍니다.
$ mkdir build
$ cd build
본격적으로 cmake를 통해서 install을 해봅시다.
dealii의 설치 폴더의 절대 경로를 붙여넣어 줘야하는데
pwd 명령어를 사용하면 현재 폴더의 절대경로를 알 수 있습니다.
$ cmake -DCMAKE_INSTALL_PREFIX=/path/where/dealii/should/be/installed/to /path/to/dealii/sources
==> path 부분부터는 절대 경로를 의미한다.


$ make install
혹은
$ make -j<N> install


$ make test


2021.03.08 내용 추가
-9.1 버전의 경우 Centos7에 설치하셔도 무방합니다-
'수치해석 > Deal.II' 카테고리의 다른 글
[Deal.ii] [Solving poisson equation] [Tutorial3] (0) | 2020.11.12 |
---|---|
[VisIt 3.1.3] 설치하기 [visualization tool] [deal ii] [lecture 11] (0) | 2020.11.12 |
[Deal.ii] [lecture 4] [FEM 구현] (0) | 2020.11.11 |
Lecture 2: A real brief overview of deal.II (1) | 2020.08.17 |
Lecture 1: Course overview; why consider existing software libraries (0) | 2020.08.17 |