<div><br></div><div><br></div><blockquote class="protonmail_quote" type="cite"><div>-------- Original Message --------<br></div><div>Subject: [Gmsh] gmsh 2.12.0 : gmshpy : installation directory<br></div><div>Local Time: 27 avril 2016 7:02 PM<br></div><div>UTC Time: 27 avril 2016 09:02<br></div><div>From: fabien.rozar@umontpellier.fr<br></div><div>To: gmsh@onelab.info<br></div><div>CC: remy.mozul@umontpellier.fr<br></div><div><br></div><div style="font-family: sans serif; font-size: 12pt; color: #000000"><div>Hello,<br></div><div><br></div><div>I am a postdoc at LMGC in Montpellier with Frédéric Dubois as advisor. For <br></div><div>some user case of our software, LMGC90, we use the python module 'gmshpy'.<br></div><div><br></div><div>In order to use it on a new computer, I need to install it. I downloaded the<br></div><div>source of gmsh 2.12.0 from the web page :<br></div><div><div>http://gmsh.info/<br></div><div><br></div><div>Before the compilation, I configured the generation of 'gmshpy' with :<br></div><div><div>$ cd build<br></div><div>$ cmake -DENABLE_WRAP_PYTHON=ON .../gmsh-2.12.0-source<br></div><div>$ make<br></div></div></div><div><br></div><div>The module 'gmshpy' is well build under 'build/wrappers/gmshpy'.<br></div><div><br></div><div>The point is that, after the installation step :<br></div><div>$ sudo make install<br></div><div><br></div><div>the directory 'build/wrappers/gmshpy' is copied in '/usr/local' whereas<br></div><div>this directory is not part of python default search directories :<br></div><div><div>$ python -c "import sys; print '\n'.join(sys.path)"<br></div><div><div>/usr/lib/python2.7<br></div><div>/usr/lib/python2.7/plat-x86_64-linux-gnu<br></div><div>/usr/lib/python2.7/lib-tk<br></div><div>/usr/lib/python2.7/lib-old<br></div><div>/usr/lib/python2.7/lib-dynload<br></div><div>/usr/local/lib/python2.7/dist-packages<br></div><div>/usr/lib/python2.7/dist-packages<br></div><div>/usr/lib/pymodules/python2.7<br></div></div></div><div><br></div><div><div>Question : Could you provide a release where the directory 'build/wrappers/gmshpy' is installed (copied)<br></div><div>                 in one of the python default search directories?<br></div><div><br></div><div>(the directory '/usr/local/lib/python2.7/dist-packages' seems to be the more suitable)<br></div></div></div></blockquote><div><br></div><div>Hello.  That might be a good idea (I dont' know how "make install" works in Gmsh), but in the meantime a workaround is:<br></div><div><br></div><div>$ cd /usr/local/gmshpy<br></div><div>$ sudo python setup.py install<br></div><div>$ ldconfig<br></div><div><br></div><div>That puts gmshpy in /usr/local/lib/python2.7/dist-packages, as requested.<br></div><div><br></div><div><br></div>