gpt4 book ai didi

julia - 如何从命令行更新 Julia?

转载 作者:行者123 更新时间:2023-12-05 02:05:15 26 4
gpt4 key购买 nike

有没有办法从命令行更新 Julia?我浏览了 documentation ,但我找不到任何东西。

enter image description here

最佳答案

我建议尝试 asdf如果您使用的是 MacOS、Linux 或 Linux 的 Windows 子系统(它不支持 Windows 本身,因为它在 Linux 类型的 shell 中工作)。它是一个用于处理版本的通用工具,并且有一个 Julia 插件。一旦安装了 asdf,就可以了

asdf plugin add julia

添加 julia 插件。然后添加新版本的 Julia 就非常容易了。我没有在这台计算机上安装 1.4.0(我安装了 1.5.1,稍后我会切换到它),所以我将通过安装它来演示:

$ asdf install julia 1.4.0
Downloading from:
https://julialang-s3.julialang.org/bin/linux/x64/1.4/julia-1.4.0-linux-x86_64.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 94.3M 100 94.3M 0 0 5241k 0 0:00:18 0:00:18 --:--:-- 5932k

现在已经安装好了,我可以将它设置为默认版本:

$ asdf global julia 1.4.0

然后我就运行julia:

$ julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.4.0 (2020-03-21)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release

现在,如果我想将版本改回 1.5.1,非常简单:

$ asdf global julia 1.5.1
$ julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.5.1 (2020-08-25)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |

如果你想要最新版本,只需执行 asdf install julia latest。要查看所有可用版本,asdf list all julia。请注意,您似乎需要输入补丁版本号,例如asdf install julia 1.5.1,而不是asdf install julia 1.5

关于julia - 如何从命令行更新 Julia?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63693207/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com