CentOS Stream 9にプログラム言語「Nim」をインストールする
環境
CentOS Stream release 9
操作方法
1.gccをインストールします
# sudo dnf install gcc
2.gccバージョンを確認します
# gcc --version gcc (GCC) 11.3.1 20220421 (Red Hat 11.3.1-2) Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
3.nimプログラム言語をインストールします
# curl https://nim-lang.org/choosenim/init.sh -sSf | sh 略 choosenim-init: ChooseNim installed in /root/.nimble/bin choosenim-init: You must now ensure that the Nimble bin dir is in your PATH. choosenim-init: Place the following line in the ~/.profile or ~/.bashrc file. choosenim-init: export PATH=/root/.nimble/bin:$PATH
環境「PATH」を通します
# export PATH=/root/.nimble/bin:$PATH
設定を反映します
# exec $SHELL -l
4.nimバージョンを確認します
# nim -v Nim Compiler Version 1.6.8 [Linux: amd64] Compiled at 2022-09-27 Copyright (c) 2006-2021 by Andreas Rumpf git hash: c9f46ca8c9eeca8b5f68591b1abe14b962f80a4c active boot switches: -d:release
5.動作確認
# nano test.nim
以下の内容を記述します
stdout.write(“hello, world study nim language")
ファイルをコンパイルして実行します
# nim compile --run test.nim # ./test hello, world study nim language