-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deleting notebooks is broken #3249
Comments
What's the path of the notebook, and can you try running this code? import os
path = b'/path/to/Notebook.ipynb' # Replace with real path
while True:
print(path)
print(os.stat(path))
if path == b'/':
break
path = os.path.dirname(path) See also #3130. |
|
I am not satisfied with the solution. I have a docker container with |
With Jupyter notebook 5.3.1, I can no longer delete notebook files:
This worked fine in notebook 5.2.2
The text was updated successfully, but these errors were encountered: