Java error when trying to run NetLogo headlessly on a cluster

后端 未结 1 1576
不思量自难忘°
不思量自难忘° 2021-01-26 21:16

I am attempting to run Netlogo headlessly using linux in order to send a job to a cluster. I have never used linux before, but I am attempting to follow the directions here (htt

相关标签:
1条回答
  • 2021-01-26 22:15

    "main" should be capitalized: "Main". So the script should be:

    #!/bin/bash
    #SBATCH -N 1
    #SBATCH -n 1
    #SBATCH -c 7
    java -Xmx1024m -Dfile.encoding=UTF-8 -cp /opt/shared/netlogo/5.3.1-64/app/NetLogo.jar \
    org.nlogo.headless.Main \
    --model /cluster/home/rfuda01/UM_model.nlogo \
    --experiment UM \
    --table /cluster/home/rfuda01/UM_test.csv
    
    0 讨论(0)
提交回复
热议问题