JupyterLab:无法保存笔记本。 “文件>保存笔记本”显示为灰色。自动保存和Cmd + S也不起作用

时间:2020-02-09 12:20:52

标签: google-cloud-platform jupyter-notebook jupyter jupyter-lab

JupyterLab位于gcp Deep learning vm中。

自几个小时前以来,我无法在JupyterLab中保存任何更改。

有未保存的更改。

enter image description here

将笔记本保存为灰色。

enter image description here

此外,如果我尝试从左窗格中删除文件,则会显示500错误。

enter image description here

我记得在此中断之前所做的唯一更改是。当我尝试在命令行中执行git操作时遇​​到此错误。

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:

因此,我这样做了

rm -f ./.git/index.lock

并且git命令正常工作。这是我记得在发生此错误之前所做的唯一一件事。

然后,我删除了存储库并重新克隆了它。

由于每次我都必须键入sudo,因此用户要求使用jupyter目录。但是在我进行此更改之前存在此错误。

udo chown your_username directory

2 个答案:

答案 0 :(得分:0)

jupyter目录的某些组权限已更改为仅读取和执行。只需添加写权限即可解决此问题。

drwxr-xr-x 13 praveen jupyter                4096 Feb  9 11:46 jupyter

命令

chmod 771 /home/jupyter/

答案 1 :(得分:0)

这对我很有用:

chmod -R 777 /folder_name-R(或--recursive)选项使其具有递归性。

或者如果要使当前目录中的所有文件都具有所有权限类型:

chmod -R 777 ./

Reference