【笔记】Jupyter – 添加内核(C,nodejs)
简单记录
前々、前回からの続き
Rは、v3.1(Raspbian jessieのパッケージのやつ)だとうごかない。3.2か、3.3にしないといけない。
ホントに必要になったら、検証して、更新する。
Unfortunately, there is no specific sentence provided for paraphrasing. Could you please provide a sentence or phrase for me to paraphrase into Chinese?
- https://github.com/brendan-rius/jupyter-c-kernel
sudo pip install jupyter-c-kernel
git clone https://github.com/brendan-rius/jupyter-c-kernel.git
cd jupyter-c-kernel
sudo jupyter-kernelspec install c_spec/
Node.js 是一个基于 V8 引擎的 JavaScript 运行环境
- https://github.com/notablemind/jupyter-nodejs
请通过sudo apt-get命令安装npm、nodejs-legacy和libzmq-dev。
git clone https://github.com/notablemind/jupyter-nodejs.git
cd jupyter-nodejs
mkdir -p ~/.ipython/kernels/nodejs/
npm install && node install.js
make
ipython console --kernel nodejs
避免出现REPLACE_INVALID_UTF8错误。
如果你使用的是类似于Raspbian软件包的旧版nodejs(v0.10?),
REPLACE_INVALID_UTF8 = 0を追加(一行前に , 入れる)
...
enum WriteOptions {
NO_OPTIONS = 0,
HINT_MANY_WRITES_EXPECTED = 1,
NO_NULL_TERMINATION = 2,
PRESERVE_ASCII_NULL = 4,
REPLACE_INVALID_UTF8 = 0
};
...