Julia Install in ubuntu 18.04 웹사이트 https://julialang.org/downloads/ Generic Linux Binaries for x86 다운로드 다운로드 후 압축관리자를 사용하여 압축풀기 압축푼 디렉토리는 터미널에서 opt 복사합니다. $ sudo cp -r julia-1.4.1 /opt/ opt에 복사한 julia-1.4.1 디렉토리의 /bin/julia 실행파일을 /usr/local/bin 디렉토리 하에 생성하여 링크합니다. /usr/local/bin$ sudo ln -s /opt/julia-1.4.1/bin/julia /usr/local/bin/julia julia를 실행하기 위해 터미널에서 실행 $ julia jupyter notebook에서 julia 사용 터미널에서 julia 실행하고 다음을 적용합니다. julia> using Pkg julia> Pkg.add("IJulia") Cloning default registries into `~/.julia` Cloning registry from "https://github.com/JuliaRegistries/General.git" Added registry `General` to `~/.julia/registries/General` Resolving package versions... Installed MbedTLS_jll ───── v2.16.0+2 Installed SoftGlobalScope ─ v1.0.10 ... jupyter notebook을 실행하면 "New"에 Julia 1.4.1이 생성 jupyter notebook 테마 변경 jupyterthemes를 설치 In [1]: !pip install jupyterthemes Out[1]: Collecting jupyter...
python 언어를 적용하여 통계(statistics)와 미적분(Calculus), 선형대수학(Linear Algebra)을 소개합니다. 이 과정에서 빅데이터를 다루기 위해 pytorch를 적용합니다.