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 jupyterthemes
Downloading jupyterthemes-0.20.0-py2.py3-none-any.whl (7.0 MB)
|████████████████████████████████| 7.0 MB 108 kB/s eta 0:00:01
Requirement already satisfied: ipython>=5.4.1 in /home/sonhs/anaconda3/lib/python3.7/site-packages (from jupyterthemes) (7.12.0)
Collecting lesscpy>=0.11.2 ...
Out[1]: Collecting jupyterthemes
Downloading jupyterthemes-0.20.0-py2.py3-none-any.whl (7.0 MB)
|████████████████████████████████| 7.0 MB 108 kB/s eta 0:00:01
Requirement already satisfied: ipython>=5.4.1 in /home/sonhs/anaconda3/lib/python3.7/site-packages (from jupyterthemes) (7.12.0)
Collecting lesscpy>=0.11.2 ...
설치된 테마의 리스트 확인
In [2]: ! jt -l
Out[2]: Available Themes:
chesterish
grade3
gruvboxd
gruvboxl
monokai
oceans16
onedork
solarizedd
solarizedl
Out[2]: Available Themes:
chesterish
grade3
gruvboxd
gruvboxl
monokai
oceans16
onedork
solarizedd
solarizedl
테마 선택
In [3]: jt -t chesterish
File-print preview에서 그 테마를 확인할 수 있습니다.
댓글
댓글 쓰기