Added manim module

This commit is contained in:
2022-10-09 21:02:49 -07:00
parent e42d845d5a
commit 67b30b37cb
5 changed files with 49 additions and 8 deletions
+7 -2
View File
@@ -19,9 +19,14 @@ Change the permissions on the configuration volume (see `docker-compose.yml`) if
You may want to add the following lines to `jupyter_notebook_config.py`:
```
```python
c.ServerApp.local_hostnames = ["localhost", "0.0.0.0"]
c.ServerApp.token = "a_long_random_string"
c.TagRemovePreprocessor.enabled = True
c.TagRemovePreprocessor.remove_cell_tags = ("hide_cell",)
c.TagRemovePreprocessor.remove_all_outputs_tags = ("hide_output",)
c.TagRemovePreprocessor.remove_input_tags = ("hide_input",)
```
The first sets `0.0.0.0` to the allowed local hostname list. This prevents a possible "connection reset" when connecting to the docker container. Opens jupyter up to the outside internet, but you should have your inbound ports firewalled off anyway.
@@ -29,7 +34,6 @@ The first sets `0.0.0.0` to the allowed local hostname list. This prevents a pos
The second line sets a persistent token. If this config value is unset, jupyter will generate a new one on each run, making it hard to make a one-click bookmark.
## Image contents
- jupyterlab, jupyterhub, notebook
- latex + pandoc for exporting
@@ -42,6 +46,7 @@ The second line sets a persistent token. If this config value is unset, jupyter
- numpy
- matplotlib
- pandas
- manim
- Octave
- R
- Julia