Reputation: 650
I am using the university's clusters to run few computations using gmsh and getdp. I wrote a python script to automate the simulations. However, I keep getting the following error:
-bash: gmsh: command not found
even though I have added the gmsh executable to the folder.
Any ideas of how can I deal with this? I've checked few gmsh forums where the commands proposed require sudo rights.
Upvotes: 0
Views: 956
Reputation: 5476
It seems like the path variables are not added for gmsh
export PATH="$PATH:/path/to/gmsh"
Upvotes: 1