LoginSignup
1
2

More than 3 years have passed since last update.

Juliaインストール

Last updated at Posted at 2020-05-26

Juliaインストール

AIの開発言語を探していたところ、Juliaという言語を知りました。
特徴として、
・ Pythonと比較して処理が速い。
・ 発展途上。
などがあげられるらしい。
Julia ウィキペディア

インストール環境

・CentOS 7.7.1908
・julia 1.4
・参考url

インストール手順

1.インストーラのDL
image.png
より、対象をDLする。

コマンドラインより、

# wget https://julialang-s3.julialang.org/bin/linux/x64/1.4/julia-1.4.2-linux-x86_64.tar.gz
# tar zxvf julia-1.4.2-linux-x86_64.tar.gz 

解凍したファイルを移動

#  mv julia-1.4.2 /opt

PATHを追加

# vi .bash_profile

export PATH
export PATH=$PATH:/usr/local/go/bin

 ↓

export PATH
export PATH=$PATH:/usr/local/go/bin:/opt/julia-1.4.1/bin/

反映・確認

# . .bash_profile
# julia --version

julia version 1.4.1

動作確認

終了はCtrl+d
image.png

とりあえず本日はここまで。

1
2
9

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2