Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wilberquito/mtp1
https://github.com/wilberquito/mtp1
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wilberquito/mtp1
- Owner: wilberquito
- License: apache-2.0
- Created: 2024-08-14T09:16:54.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T12:21:24.000Z (3 months ago)
- Last Synced: 2024-08-19T23:27:28.637Z (3 months ago)
- Language: Jupyter Notebook
- Size: 373 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MTP1 on Notebooks
![Preview](./preview-xeus-notebook.png)
In this README you will find the instructions
to build the images and create the running container
to interact with the notebooks and the different C++ kernels.If you want to know more how it works you can read
this interesting [post](https://blog.jupyter.org/interactive-workflows-for-c-with-jupyter-fe9b54227d92).### Build image
```
docker build -t mtp1 .
```### Run image
_**hide logs (detached container's shell)**_
```
docker run -dp 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name notebooks-mtp1 mtp1
```_**print logs (attached container's shell)**_
```
docker run -p 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name notebooks-mtp1 mtp1
```