jupyter notebook运行c
时间: 2023-11-16 12:07:50 浏览: 470
iPadJupyter
Jupyter notebook 默认情况下不支持 C 语言,但是可以通过安装相应的内核来支持。以下是在 Jupyter notebook 中运行 C 语言的步骤:
1. 安装 C 内核。可以使用以下命令在终端中安装 C 内核:
```
conda install -c conda-forge xeus-cling
```
2. 启动 Jupyter notebook。在终端中输入以下命令启动 Jupyter notebook:
```
jupyter notebook
```
3. 在 Jupyter notebook 中创建一个新的 Notebook。在 Jupyter notebook 主界面中,点击右上角的 New 按钮,选择 C++ 11 作为 Kernel 创建一个新的 Notebook。
4. 在 Notebook 中编写 C 代码。在新建的 Notebook 中,可以直接编写 C 代码并运行。
```c
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
```
5. 运行代码。在 Notebook 中按下 Shift + Enter 键或者点击上方的 Run 按钮即可运行代码。
以下是一个简单的 C 语言程序在 Jupyter notebook 中的运行结果:
```
Hello, world!
```
阅读全文