From c6bff59261291f51fc9eff5a2b0d21e20fe3a99a Mon Sep 17 00:00:00 2001 From: Zichun Ye Date: Mon, 29 Apr 2024 17:01:27 +0800 Subject: [PATCH] fix julia path --- tutorials/experts/source_en/operation/op_custom.md | 2 ++ tutorials/experts/source_zh_cn/operation/op_custom.ipynb | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tutorials/experts/source_en/operation/op_custom.md b/tutorials/experts/source_en/operation/op_custom.md index c7e6584933a..4bc1a7b6089 100644 --- a/tutorials/experts/source_en/operation/op_custom.md +++ b/tutorials/experts/source_en/operation/op_custom.md @@ -511,6 +511,8 @@ Matters need attention: ```bash # download julia-1.6.5 wget https://julialang-s3.julialang.org/bin/linux/x64/1.6/julia-1.6.5-linux-x86_64.tar.gz + # for arm server + # wget https://julialang-s3.julialang.org/bin/linux/aarch64/1.6/julia-1.6.5-linux-aarch64.tar.gz # extract file tar xvf julia-1.6.5-linux-x86_64.tar.gz # if $JULIA_DIR not exist diff --git a/tutorials/experts/source_zh_cn/operation/op_custom.ipynb b/tutorials/experts/source_zh_cn/operation/op_custom.ipynb index 8fd0aef458a..6c8e2e83ad6 100644 --- a/tutorials/experts/source_zh_cn/operation/op_custom.ipynb +++ b/tutorials/experts/source_zh_cn/operation/op_custom.ipynb @@ -715,6 +715,8 @@ " ```bash\n", " # download julia-1.6.5\n", " wget https://julialang-s3.julialang.org/bin/linux/x64/1.6/julia-1.6.5-linux-x86_64.tar.gz\n", + " # for arm server\n", + " # wget https://julialang-s3.julialang.org/bin/linux/aarch64/1.6/julia-1.6.5-linux-aarch64.tar.gz\n", " # extract file\n", " tar xvf julia-1.6.5-linux-x86_64.tar.gz\n", " # if $JULIA_DIR not exist\n", -- Gitee