jupyter c kernel
1.0.0
docker pull brendanrius/jupyter-c-kernel
docker run -p 8888:8888 brendanrius/jupyter-c-kernel
Copy/paste this URL into your browser when you connect for the first time,
to login with a token:
http://localhost:8888/?token=66750c80bd0788f6ba15760aadz53beb9a9fb4cf8ac15ce8
僅適用於 Linux 和 OS X。如果你想在Windows上使用這個項目,請使用Docker。
pip install jupyter-c-kernel
install_c_kernel
jupyter-notebook
。享受! 您可以使用自訂編譯標誌,如下所示:
在這裡,傳遞了-lm
標誌,以便您可以使用數學庫。
docker 映像以可編輯模式安裝內核,這表示您可以在 Docker 中即時變更程式碼。為此,只需像這樣運行 docker box:
git clone https://github.com/brendan-rius/jupyter-c-kernel.git
cd jupyter-c-kernel
docker run -v $( pwd ) :/jupyter/jupyter_c_kernel/ -p 8888:8888 brendanrius/jupyter-c-kernel
這將克隆原始程式碼,運行內核,並將當前資料夾(您剛剛克隆的資料夾)綁定到 Docker 中的相應資料夾。現在,如果您更改來源,它將立即反映在 http://localhost:8888 中。不要忘記單擊頁面上的“重新啟動”內核,因為它不會自動重新啟動。
麻省理工學院