Often we run jupyter notebook to pop up a page in browser to use notebook. However, the terminal opening the server remains there. Is there a way that we can cl
jupyter notebook
Actually, jupyter notebook & alone is not enough, the backend will still log to your screen. What you need is, cited from this issue
jupyter notebook &
jupyter notebook > /path/to/somefileforlogging 2>&1 &