Monocle3
ml gdal/3.5.2 ml proj/8.1.0
Installation
SQLite3
1
2
3
4
5
6
wget https://www.sqlite.org/2023/sqlite-autoconf-3430200.tar.gz
tar -xvzf sqlite-autoconf-3430200.tar.gz
cd sqlite-autoconf-3430200
./configure --prefix=/source/sqlite-autoconf-3430200
make && make install
#path 설정
Proj install
Build requirements
- C99 compiler
- C++11 compiler
- CMake >= 3.9
- SQLite3 >= 3.11: headers and library for target architecture, and sqlite3 executable for build architecture.
- libtiff >= 4.0 (optional but recommended)
- curl >= 7.29.0 (optional but recommended)
1
2
3
4
5
6
7
8
wget https://download.osgeo.org/proj/proj-9.3.0.tar.gz
tar -xvzf proj-9.3.0.tar.gz
cd proj-9.3.0
mkdir build
cd build
cmake -DSQLITE3_INCLUDE_DIR=/sc/arion/projects/scMultiscale/chos14/source/sqlite-autoconf-3430200/include -DSQLITE3_LIBRARY=/sc/arion/projects/scMultiscale/chos14/source/sqlite-autoconf-3430200/lib/libsqlite3.so ..
cmake --build .
cmake --build . --target install --prefix /source/proj-9.3.0
This post is licensed under CC BY 4.0 by the author.