Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-cloud-platform/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google cloud platform JupyterLab:无法保存笔记本&引用;文件>;“保存笔记本”;变灰了。自动保存和Cmd+;S也没有';行不通_Google Cloud Platform_Jupyter Notebook_Jupyter_Jupyter Lab - Fatal编程技术网

Google cloud platform JupyterLab:无法保存笔记本&引用;文件>;“保存笔记本”;变灰了。自动保存和Cmd+;S也没有';行不通

Google cloud platform JupyterLab:无法保存笔记本&引用;文件>;“保存笔记本”;变灰了。自动保存和Cmd+;S也没有';行不通,google-cloud-platform,jupyter-notebook,jupyter,jupyter-lab,Google Cloud Platform,Jupyter Notebook,Jupyter,Jupyter Lab,JupyterLab在一个实验室里 几个小时前,我无法保存JupyterLab中的任何更改 有未保存的更改 保存的笔记本变灰了 另外,如果我试图从左窗格中删除一个文件,则会出现500错误 我记得在这一次打破之前所做的唯一改变就是这个。当我试图在命令行中执行git操作时,出现了这个错误 Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Pleas

JupyterLab在一个实验室里

几个小时前,我无法保存JupyterLab中的任何更改

有未保存的更改

保存的笔记本变灰了

另外,如果我试图从左窗格中删除一个文件,则会出现500错误

我记得在这一次打破之前所做的唯一改变就是这个。当我试图在命令行中执行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

不知何故,jupyter目录的组权限已更改为只读和执行。只需添加写入权限即可解决此问题

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

chmod 771 /home/jupyter/

不知何故,jupyter目录的组权限已更改为只读和执行。只需添加写入权限即可解决此问题

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

chmod 771 /home/jupyter/

这对我很有用:

chmod-R 777/文件夹名称
-R
(或--recursive)选项使其具有递归性

或者,如果要使当前目录中的所有文件都具有所有权限,请键入:

chmod-R 777./


这对我很有用:

chmod-R 777/文件夹名称
-R
(或--recursive)选项使其具有递归性

或者,如果要使当前目录中的所有文件都具有所有权限,请键入:

chmod-R 777./


我认为应该是
chmod 777/home/jupyter/
我认为应该是
chmod 777/home/jupyter/