如何在 Linux mint 17.1 (KDE) 中安装代码块
How to install codeblocks in Linux mint 17.1 (KDE)
我已经在我的 linux mint 17.1 (KDE) 中安装了代码块,使用这个命令行
sudo apt-get install codeblocks
,但是当我尝试编译 运行 代码块上的 c 程序时,它显示了这个错误
/home/redwan/Programmin/C Program/hello.c|1|fatal error: stdio.h: No
such file or directory| ||=== Build failed: 1 error(s), 0 warning(s)
(0 minute(s), 0 second(s)) ===|
请有人帮助我使用代码块在 linux mint 17.1(KDE) 中正确地 运行 c 和 c++ 程序。
抱歉我的英语不好。
将其保存到主目录中名为 'install.sh'(不带引号)的文件中,打开终端 (Ctrl+Alt+t) 并 运行 命令 'bash install.sh'(再次没有引号)。
#!/bin/bash
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install build-essential -y
sudo apt-get install codeblocks -y
sudo apt-get install codeblocks-contrib -y
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get autoremove -y
sudo apt-get autoclean -y
exit 0;
我已经在我的 linux mint 17.1 (KDE) 中安装了代码块,使用这个命令行
sudo apt-get install codeblocks
,但是当我尝试编译 运行 代码块上的 c 程序时,它显示了这个错误
/home/redwan/Programmin/C Program/hello.c|1|fatal error: stdio.h: No such file or directory| ||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
请有人帮助我使用代码块在 linux mint 17.1(KDE) 中正确地 运行 c 和 c++ 程序。
抱歉我的英语不好。
将其保存到主目录中名为 'install.sh'(不带引号)的文件中,打开终端 (Ctrl+Alt+t) 并 运行 命令 'bash install.sh'(再次没有引号)。
#!/bin/bash
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install build-essential -y
sudo apt-get install codeblocks -y
sudo apt-get install codeblocks-contrib -y
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get autoremove -y
sudo apt-get autoclean -y
exit 0;