1. 首页
  2. 数据库
  3. 其它
  4. ipybind:pybind11的IPython Jupyter集成 源码

ipybind:pybind11的IPython Jupyter集成 源码

上传者: 2021-02-16 00:03:16上传 ZIP文件 24.07KB 热度 20次
ipybind是一个IPython扩展,它允许在IPython环境中构建和导入模块,例如IPython控制台或运行Python内核的Jupyter笔记本。 %%pybind11 启用扩展 要在当前内核中启用ipybind扩展: % load_ext ipybind 在以下所有示例中,我们假定扩展程序已预先加载。 基本用法示例 %%pybind11 PYBIND11_PLUGIN (example) { py::module m ( " example " ); m. def ( " add " , []( int x, int y) { return x + y; });
用户评论