Getting Gmsh Into The Virtualenv
I'm extremely new to Python, so sorry if this is a stupid question. Anyways, I'm getting this error when trying to run a package I installed on PyCharm (Python IDE): Traceback (mos
Solution 1:
openbte\geometry.py
seems to run gmsh.exe
without any path:
a=subprocess.check_output(['gmsh','-' + str(self.dim),'mesh.geo','-o','mesh.msh'])
Which means it expects gmsh.exe
somewhere in the %PATH%
. So install gmsh
and add the directory with gmsh.exe
to the %PATH%
.
Post a Comment for "Getting Gmsh Into The Virtualenv"