1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Juliaの環境構築,インストール

Posted at

Julia

普段は使いませんが,MITのオープンコースの演習に,
Julia言語を使う課題があったので,環境作りました.
その時のメモです.

環境 Windows 11 X86_64 WSL2 Ubuntu上にインストールします.
Linuxの方も同じ方法で出来ると思います.

手順

公式サイトのDLページに行きます
https://julialang.org/downloads/

image.png
ダウンロードリンクを取ってきます.

wget https://julialang-s3.julialang.org/bin/linux/x64/1.9/julia-1.9.3-linux-x86_64.tar.gz
tar -zevf julia-1.9.3-linux-x86_64.tar.gz
sudo mv julia /opt/
sudo ln -s /opt/julia/julia-1.9.3/bin/julia /usr/local/bin/julia

wgetでファイルをダウンロードし,tarコマンドで展開.
出てきたディレクトリを/opt以下に配置します.
配置したディレクトリのbin以下のjuliaが実行ファイルなので,
/usr/local/bin/juliaにシンボリックリンクを張ります.
これでコマンドjuliaと打てば,実行できます.

julia
               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.9.3 (2023-08-24)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release
|__/                   |

juliaと打ってアスキーアートが出てきたらOKです.

バージョン名などは各自変わると思うので,その辺は合わせてください.

1
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?