기본 콘텐츠로 건너뛰기

라벨이 jupyter_notebook인 게시물 표시

[matplotlib]quiver()함수

[Jupyter notebook]필요사항

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...