1. Unzip Neuroet.zip and move the folder to your Desktop. 2. Open a terminal console and change directory to Neuroet on the Desktop using the following statement: cd Desktop/Neuroet There should be two files in the folder: instructions.txt neuroet 3. For MacOS users compile the program using the following statement below: javac -encoding macroman -classpath "or124.jar" neuroet/*.java Ensure that you are using Java 1.8.0_202 (use java -version in command line) And then Run one of the programs (depending on memory allocation needed): java -Xmx1024m -cp ".:or124.jar" neuroet.Startup java -Xmx4096m -cp ".:or124.jar" neuroet.Startup java -Xmx6144m -cp ".:or124.jar" neuroet.Startup java -Xmx10240m -cp ".:or124.jar" neuroet.Startup java -Xmx20480m -cp ".:or124.jar" neuroet.Startup 5. For Windows users, compile the program using the following statement below: javac -classpath "or124.jar" neuroet/*.java And then Run one of the programs (depending on memory allocation needed): java -Xmx1024m -cp ".;or124.jar" neuroet/Startup java -Xmx4096m -cp ".;or124.jar" neuroet/Startup java -Xmx6144m -cp ".;or124.jar" neuroet/Startup java -Xmx10240m -cp ".;or124.jar" neuroet/Startup java -Xmx20480m -cp ".;or124.jar" neuroet/Startup Note: the -Xmx increases the memory heap size for running large programs The program should pop up as a GUI interface.