标签: function cloud gcsfuse
我正在尝试通过调用以下内容在Google Cloud函数中安装Google Storage。我的main.py是
导入子过程 ret = subprocess.call('gcsfuse xxxxxxx / home / yyyyy / gcs_mount',shell = True) 该代码失败,并在运行时返回代码127。
但是,同一命令在Google Cloud Appfunction中成功运行。能够挂载存储并能够在其中读取和写入文件。
请让我知道。