Its keep giving the error. What can be the issue ?
lua: error loading module 'proAudioRt' from file './proAudioRt.so':                                                             
        liblua5.1.so.0: cannot open shared object file: No such file or directory                                               
stack traceback:                                                                                                                
        [C]: ?                                                                                                                  
-- create an audio device using default parameters and exit in case of errors
require("proAudioRt")
if not proAudio.create() then os.exit(1) end
-- load and play a sample:
sample = proAudio.sampleFromFile("sample.ogg")
if sample then proAudio.soundPlay(sample) end
-- wait until the sound has finished:
while proAudio.soundActive()>0 do 
  proAudio.sleep(0.05)
end
-- close audio device
proAudio.destroy()