Forum Message

 

 

We have moved the forum to https://forum.ngsolve.org . This is an archived version of the topics until 05/05/23. All the topics were moved to the new forum and conversations can be continued there. This forum is just kept as legacy to not invalidate old links. If you want to continue a conversation just look for the topic in the new forum.

Notice

The forum is in read only mode.

Regarding Installation

More
6 years 3 months ago #333 by ankit101
Hi,
I have installed Netgen and NGSOLVE 6.0 on my local machine using the instruction given on your download page of Ngsolve. But recently I needed to install Netgen 6.0 on our university cluster. As given in the instructions, we need to have root privileges for installation of all the Prerequisites. Given that it's our university cluster, I don't have root privileges. Hence I would like to know whether anyone has a complete set of instruction for installing netgen 6.0 and all the prerequisites without root privileges.
More
6 years 3 months ago #344 by matthiash
Replied by matthiash on topic Regarding Installation
Hi,

Which instructions did you follow? Did you compile NGSolve yourself?

On a cluster I recommend to compile from sources . Also have a look at the configuration options . I recommend to disable the graphical user interface (by setting -DUSE_GUI=OFF at configuration).
I guess you have Intel MKL and some c++ (with C++14 support!) compiler already available on the cluster. If you can use that too, the list of dependencies strips down to:
- python3 (including headers)
- cmake
- git (to fetch the sources, you can also download a zip file instead)

I am sure the system administrators can help you with them in case they are not already installed.

Matthias
More
6 years 3 months ago #347 by ankit101
Replied by ankit101 on topic Regarding Installation
I did install again using the flag -DUSE_GUI=OFF while configuring but after installation, i ran into following problems:
(a) I have a python script as following which converts a gmesh into .vol format

from netgen.read_gmsh import ReadGmsh
mesh = ReadGmsh("output")
# wrap it into an NGSolve mesh
from ngsolve import *
mesh = Mesh(mesh)
#Draw(mesh)
mesh.ngmesh.Save("netgen_cube.vol")
print ("num vol elements:", mesh.GetNE(VOL))
print ("num bnd elements:", mesh.GetNE(BND))

i cant run this script as it gives me the following error:
Traceback (most recent call last):
File "testgmsh.py", line 1, in <module>
from netgen.read_gmsh import ReadGmsh
ImportError: No module named 'netgen'

I need this script as I have to convert my gmsh into .vol format
More
6 years 3 months ago - 6 years 3 months ago #348 by matthiash
Replied by matthiash on topic Regarding Installation
Did you set NETGENDIR and PYTHONPATH appropriately, as stated here ?
Code:
export PYTHONPATH=$NETGENDIR/../`python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1,0,''))"`
Last edit: 6 years 3 months ago by matthiash.
More
6 years 3 months ago #349 by ankit101
Replied by ankit101 on topic Regarding Installation
Thanks, I just set the python path and although python script is now being interpreted properly, I get a seg fault while importing this ngsolve library(that is when the control reaches the line: from ngsolve import *). I had this problem even when I had netgen installed with gui on the cluster. I am adding the command line's output on running the code
testgmsh.py is my python script that I posted earlier


set global mesh
zsh: segmentation fault (core dumped) python3 testgmsh.py
Time to create page: 0.126 seconds