From 84533b785800f8fe06c1ef9c22a4db972e95cbbe Mon Sep 17 00:00:00 2001 From: liqun Date: Fri, 13 Sep 2024 15:29:06 +0800 Subject: [PATCH] update faq --- website/docs/FAQ.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/website/docs/FAQ.md b/website/docs/FAQ.md index 6d24a23f..8ca3a5a1 100644 --- a/website/docs/FAQ.md +++ b/website/docs/FAQ.md @@ -129,4 +129,10 @@ Then, pass the `config` to the plugin constructor. As yaml is type sensitive, yo A: We use a Jupyter Kernel to execute the code in TaskWeaver. The Jupyter Kernel uses an event loop to manage the execution of the code. If you see the error message "RuntimeError: This event loop is already running.", it typically means that the event loop is already running. -This is typically caused by the enviroment where TaskWeaver is running. For example, if you are running TaskWeaver in a Jupyter Notebook. \ No newline at end of file +This is typically caused by the environment where TaskWeaver is running. For example, if you are running TaskWeaver in a Jupyter Notebook. + +### Q: Why I see the error message "Permissions assignment failed for secure file: Got '0o677' instead of '0o0600'." when running TaskWeaver? + +A: This error message typically happens when TaskWeaver is running in the container mode on a Windows machine with WSL. +One can refer to this [issue](https://github.com/jupyter/notebook/issues/5428) for more details. +The fix is to set `JUPYTER_ALLOW_INSECURE_WRITES=true` for the container. \ No newline at end of file