当前位置: 代码迷 >> 综合 >> Doris 处理Sentinel-1第一步报错:TypeError: cannot concatenate ‘str‘ and ‘NoneType‘ objects
  详细解决方案

Doris 处理Sentinel-1第一步报错:TypeError: cannot concatenate ‘str‘ and ‘NoneType‘ objects

热度:37   发布时间:2023-12-17 04:51:21.0

Doris 处理Sentinel-1在第一步prepare_datastack_main.py报错:TypeError: cannot concatenate ‘str’ and ‘NoneType’ objects

出现这个问题是因为create_datastack_bash.py文件第35行出现了错误。
该行代码 f.write('#PBS -l nodes=1:ppn=' + nodes + ' \n')虽然是以注释的形式写到文件中,但是在执行的过程中nodes变量报错还是无法执行。该变量为远程操作服务器时的节点,在服务器上的Doris会用到,自己的电脑用不到,直接去掉即可。可直接改为f.write('#PBS -l nodes=1:ppn=' + ' \n')

  相关解决方案