Introduction to Scripting | Documentation - Roblox Creator Hub
29 oct 2023
22 oct 2023
math publishing tools
Mathcha Online Mathematics Editor
Openmath software
Quatro author using Jupyter notebooks or with plain text markdown
pretext PreTeXt is a markup language
intro 2 restructured text
8 oct 2023
jupyter from other computer
Have you configured the jupyter_notebook_config.py file to allow external connections?
By default, Jupyter Notebook only accepts connections from localhost (eg, from the same computer that its running on). By modifying the NotebookApp.allow_origin option from the default ' ' to '*', you allow Jupyter to be accessed externally.
c.NotebookApp.allow_origin = '*' #allow all origins
You'll also need to change the IPs that the notebook will listen on:
c.NotebookApp.ip = '0.0.0.0' # listen on all IPs
Make sure that you uncomment these settings (remove the # at the beginning) after making any modifications. If you don't, they'll be interpreted as comments, and they won't change the behavior of the Jupyter notebook client.
Also see the details in a subsequent answer in this thread.
Documentation on the Jupyter Notebook config file.
Suscribirse a:
Entradas (Atom)