본문 바로가기

IT

[에러해결]sbatch: error: This does not look like a batch script.

sbatch: error: This does not look like a batch script.  The first
sbatch: error: line must start with #! followed by the path to an interpreter.
sbatch: error: For instance: #!/bin/sh

 

slurm sbatch로 job을 날리다가 만난 에러.

slurm에 능숙하신 분들이라면 별거 아닐수 있지만...

 

해결은 굉장히 간단하다. sbatch로 python script를 돌리려다 생긴 에러이다.

sbatch로 돌릴수 있는 script는 쉘스크립트여야 하는것 같다. 

 

중간에 bash 스크립트 하나를 python파일과 sbatch사이에 연결다리 느낌으로 추가해주었더니 해결 되었다.

 

line must start with #! followed by the path to an interpreter.