I am new to Linux environment and scripts but i'm trying to simply create a .sh file that launches a software when executed in my Oracle VM's terminal. However, it returns an error which origin I don't know... Can anyone help me correcting it ?
My script is only 2 lines :
export PATH="$PATH:/lib/python3.8"
python3 NOSTRADAMUS.py # it's the software I want to execute through the .sh file
But it only returns :
': [Errno 2] No such file or directorypy
The NOSTRADAMUS.py file works well : when I launch it directly with a python3 NOSTRADAMUS.py in the console, it does launch it so the problem really comes from the .sh file.
I tried writing the full path to NOSTRADAMUS.py but the result is more or less the same.
Can anyone help me ? Thx !!