centos7中安装D语言编译器
Posted 小鲨鱼2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7中安装D语言编译器相关的知识,希望对你有一定的参考价值。
001、系统
[root@PC1 ~]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) [root@PC1 ~]#
002、测试D语言编译器
[root@PC1 ~]# dmd
bash: dmd: command not found...
003、下载D语言编译器安装包
官网:https://dlang.org/download.html
[root@PC1 software]# wget https://downloads.dlang.org/releases/2.x/2.103.1/dmd.2.103.1.linux.tar.xz
004、解压
[root@PC1 software]# tar -xf dmd.2.103.1.linux.tar.xz [root@PC1 software]# cd dmd2/ [root@PC1 dmd2]# cd linux/ [root@PC1 linux]# cd bin64/ [root@PC1 bin64]# ls ddemangle dmd dmd.conf dub dustmite rdmd README.TXT
005、测试dmd命令
[root@PC1 bin64]# ls ddemangle dmd dmd.conf dub dustmite rdmd README.TXT [root@PC1 bin64]# ./dmd --version DMD64 D Compiler v2.103.1 Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved written by Walter Bright
006、将命令加入环境变量
[root@PC1 bin64]# ls ddemangle dmd dmd.conf dub dustmite rdmd README.TXT [root@PC1 bin64]# pwd /home/software/dmd2/linux/bin64 [root@PC1 bin64]# echo "export PATH=$PATH:/home/software/dmd2/linux/bin64" >> ~/.bashrc [root@PC1 bin64]# source ~/.bashrc (base) [root@PC1 bin64]# dmd --version DMD64 D Compiler v2.103.1 Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved written by Walter Bright
在 centos 6 中安装编译器 gfortran
【中文标题】在 centos 6 中安装编译器 gfortran【英文标题】:installation of compiler gfortran in centos 6 【发布时间】:2015-08-09 22:29:29 【问题描述】:我尝试安装一些编译器。我在笔记本电脑上使用 Centos 6。我已经安装了 gcc,即“GNU” C 编译器。我还需要安装 gfortran,但是当我输入 yum install gfortran
时,我收到消息 no package gfortran available
。
你知道如何安装 fortran 编译器吗?
【问题讨论】:
【参考方案1】:试试yum install gcc-gfortran
您可以使用yum search gfortran
,查看相关包
【讨论】:
现在,我已经安装好了。谢谢以上是关于centos7中安装D语言编译器的主要内容,如果未能解决你的问题,请参考以下文章