Cloud9 C 代码 运行 失败
Cloud9 C codes running failure
首先,我 运行在 Docker 上使用 Cloud9(与 linuxserver/cloud9 一起使用)Raspbian
并在 Cloud9
上安装了 build-essential
当我尝试 运行 C 代码(例如打印 hello world)时,它说
Compiling /code/first_c.c ...
cc first_c.c -o first_c
bash: line 6: node: command not found
Process exited with code: 127
我应该安装更多东西吗?或者我该如何解决?
如果你只是想运行 C代码,你不需要node,但是你必须首先通过打开终端和运行ning:
来安装gcc
sudo apt update && sudo apt install gcc
然后检查您的 运行 是 C (simple)
并且您取消选中图标 Run in debug mode
。
如果您想 运行 在调试模式下,您必须安装节点和 gdb:
sudo apt install nodejs gdb
==更新==
P.S.: 未安装gdb时,C9显示错误:
"gdbserver" is not installed
这是一个错误:已更正(尚未)non-merged PR。
首先,我 运行在 Docker 上使用 Cloud9(与 linuxserver/cloud9 一起使用)Raspbian 并在 Cloud9
上安装了 build-essential当我尝试 运行 C 代码(例如打印 hello world)时,它说
Compiling /code/first_c.c ...
cc first_c.c -o first_c
bash: line 6: node: command not found
Process exited with code: 127
我应该安装更多东西吗?或者我该如何解决?
如果你只是想运行 C代码,你不需要node,但是你必须首先通过打开终端和运行ning:
来安装gccsudo apt update && sudo apt install gcc
然后检查您的 运行 是 C (simple)
并且您取消选中图标 Run in debug mode
。
如果您想 运行 在调试模式下,您必须安装节点和 gdb:
sudo apt install nodejs gdb
==更新==
P.S.: 未安装gdb时,C9显示错误:
"gdbserver" is not installed
这是一个错误:已更正(尚未)non-merged PR。