수치해석

[Linux]MLpack install

KAU 2021. 5. 21. 03:20

 

 


Dependency update

sudo yum install boost-devel boost-test boost-math armadillo-devel binutils-devel python3-Cython python3-setuptools python3-numpy python3-pandas ensmallen-devel stbi-devel

 


mlpack - Quickstart

 

mlpack - Quickstart

Compiling manually In case none of the binary packages listed on our website work for your system, or you want to modify mlpack, you will need to build it from source. See the "source" section for your operating system above, or the extended directions bel

www.mlpack.org

 

$ mkdir mlpack-3.4.2/build && cd mlpack-3.4.2/build
$ cmake ../
$ make -j4  # The -j is the number of cores you want to use for a build.
$ sudo make install

 

알파딜로? 아래서 다운로드

https://sourceforge.net/projects/arma/files/armadillo-10.4.1.tar.xz/download

cmake .
sudo make install

설치완료
다른 오류 발생

Doxygen: Downloads

 

Doxygen: Downloads

This page always contains a link to the latest version of doxygen. Be notified of updates The doxygen mailing lists Sourceforge hosts a number of mailing lists to which you can subscribe for doxygen related discussion (the form above is an interface for su

www.doxygen.nl

git clone https://github.com/doxygen/doxygen.git
cd doxygen

mkdir build
cd build
cmake -G "Unix Makefiles" ..
make
sudo make install

sudo yum install flex

다른오류 발생
cmake -G "Unix Makefiles" .. 까지 성공 이제 make 해야함


 

https://julialang.org/

 

The Julia Programming Language

2021-04-04 Google Season of Docs 2020-2021 Wrap-Up. 2021-03-24 Some highlights of the Julia 1.6 release. 2021-01-28 Apache Arrow Support in Julia

julialang.org

줄리아 안녕..


The Comprehensive R Archive Network (r-project.org)

 

The Comprehensive R Archive Network

 

cran.r-project.org

yum install epel-release
sudo yum update -y
sudo yum install R -y

 

다시 디펜던시

# yum install readline-devel
# yum install xorg-x11-server-devel libX11-devel libXt-devel
# yum install pcre2-devel
# yum install curl-devel
# wget https://cran.r-project.org/src/base/R-4/R-4.0.2.tar.gz
# tar zxvf R-4.0.2.tar.gz
# cd R-4.0.2/
# ./configure --prefix=/BiO/apps/R-4.0.2 --enable-R-shlib --with-libpng --with-jpeglib --with-libtiff--with-x
# make -j 10 && make install
# export LD_LIBRARY_PATH=/BiO/apps/gcc/R-4.0.2/lib64:$LD_LIBRARY_PATH
# export PATH=/BiO/apps/R-4.0.2/bin:$PATH

'수치해석' 카테고리의 다른 글

MFEM&설치하기& glvis 설치하기[MFEM]  (0) 2021.03.14