'Programming/Julia'에 해당되는 글 1건

  1. 2013.08.17 Julia 설치
Programming/Julia2013. 8. 17. 14:25

Julia is a high-level, high-performance dynamic programming language for technical computing, with syntax that is familiar to users of other technical computing environments.


공식 홈페이지에서는 Julia를 저렇게 설명한다.


어쨌든, 뭐라도 해야겠다 싶어서 설치를 해봤다. 설치 OS는 우분투 12.04.2 LTS 이다. 간단히 PPA로 설치를 하도록 하자.


Julia 0.2-dev 버전을 받기 위해 아래와 같이 두 개의 PPA를 추가한다.


sudo add-apt-repository ppa:staticfloat/julianightlies
sudo add-apt-repository ppa:staticfloat/julia-deps


그 후 update를 해준 뒤 Julia를 설치한다.


sudo apt-get update
sudo apt-get install julia


그 후 쉘에서 julia라고 입력하면... 에러가 뜰 수도 있다. 아래 명령어들로 업데이트를 해준 뒤 쉘에 julia 명령어를 치면 julia 인터랙티브 쉘이 뜨게 된다.

sudo apt-get update
sudo apt-get upgrade

소스코드를 이용한 컴파일 방법도 있으므로 편한 대로 설치해서 쓰면 되겠다.


Julia는 Windows, OS X, GNU/Linux를 모두 지원한다.

Posted by Tanto