Linux Ubuntu 安装 Nim 编程语言

2024-06-17 乙酉 甲辰年 庚午 壬子 - 农历五月十二 - 小雨到阴天

有多种方法可以把 Nim 编程语言安装到 Linux Ubuntu 上

海云青飞 目前采用手动安装 Nim 编程语言

手动在 Linux Ubuntu 上安装 Nim 编程语言

请参阅 Nim 官方网站上的安装说明:

https://nim-lang.org/install_unix.html

cd ~
wget https://nim-lang.org/download/nim-2.0.4-linux_x64.tar.xz
tar -xf *.xz
mv nim-2.0.4 nim
rm nim-2.0.4-linux_x64.tar.xz

vi ~/.profile
# set PATH so it includes user's private bin directories
# append :$HOME/nim/bin:$HOME/.nimble/bin to PATH:
# PATH="$HOME/bin:$HOME/nim/bin:$HOME/.nimble/bin:$HOME/.local/bin:$PATH"

# Reload the .profile
source ~/.profile

# Check the PATh
echo $PATH

which nim
# /home/msite/nim/bin/nim

nim -V
# Nim Compiler Version 2.0.4 [Linux: amd64]
# Compiled at 2024-03-28
# Copyright (c) 2006-2023 by Andreas Rumpf
#
# git hash: b47747d31844c6bd9af4322efe55e24fefea544c
# active boot switches: -d:release

独立思考最难得,赞赏支持是美德!(微信扫描下图)