- Thank you received: 0
This is my error installing
- Yarleque Medina
- Topic Author
- Offline
- New Member
Less
More
5 years 11 months ago #1319
by Yarleque Medina
This is my error installing was created by Yarleque Medina
/home/emmanuel/ngsuite/ngsolve-src/include/../comp/meshaccess.hpp:960:36: error: ‘const class netgen::Ngx_Mesh’ has no member named ‘GetParentSElement’; did you mean ‘GetElement’?
return ElementId(BND, mesh.GetParentSElement(ei.Nr()));
^~~~~~~~~~~~~~~~~
multigrid/CMakeFiles/ngmg.dir/build.make:62: recipe for target 'multigrid/CMakeFiles/ngmg.dir/mgpre.cpp.o' failed
make[5]: *** [multigrid/CMakeFiles/ngmg.dir/mgpre.cpp.o] Error 1
CMakeFiles/Makefile2:480: recipe for target 'multigrid/CMakeFiles/ngmg.dir/all' failed
make[4]: *** [multigrid/CMakeFiles/ngmg.dir/all] Error 2
Makefile:138: recipe for target 'all' failed
make[3]: *** [all] Error 2
CMakeFiles/ngsolve.dir/build.make:115: recipe for target 'dependencies/Stamp/ngsolve/ngsolve-build' failed
make[2]: *** [dependencies/Stamp/ngsolve/ngsolve-build] Error 2
CMakeFiles/Makefile2:211: recipe for target 'CMakeFiles/ngsolve.dir/all' failed
make[1]: *** [CMakeFiles/ngsolve.dir/all] Error 2
Makefile:149: recipe for target 'all' failed
make: *** [all] Error 2
return ElementId(BND, mesh.GetParentSElement(ei.Nr()));
^~~~~~~~~~~~~~~~~
multigrid/CMakeFiles/ngmg.dir/build.make:62: recipe for target 'multigrid/CMakeFiles/ngmg.dir/mgpre.cpp.o' failed
make[5]: *** [multigrid/CMakeFiles/ngmg.dir/mgpre.cpp.o] Error 1
CMakeFiles/Makefile2:480: recipe for target 'multigrid/CMakeFiles/ngmg.dir/all' failed
make[4]: *** [multigrid/CMakeFiles/ngmg.dir/all] Error 2
Makefile:138: recipe for target 'all' failed
make[3]: *** [all] Error 2
CMakeFiles/ngsolve.dir/build.make:115: recipe for target 'dependencies/Stamp/ngsolve/ngsolve-build' failed
make[2]: *** [dependencies/Stamp/ngsolve/ngsolve-build] Error 2
CMakeFiles/Makefile2:211: recipe for target 'CMakeFiles/ngsolve.dir/all' failed
make[1]: *** [CMakeFiles/ngsolve.dir/all] Error 2
Makefile:149: recipe for target 'all' failed
make: *** [all] Error 2
5 years 11 months ago #1320
by cwinters
Replied by cwinters on topic This is my error installing
Hi,
are you compiling NGSolve the first time or did you update your code?
If you did an update, did you also update the submodules (Netgen and pybind11) using
If you are compiling the first time. How did you configure and which system are you using?
Best regards,
Christoph
are you compiling NGSolve the first time or did you update your code?
If you did an update, did you also update the submodules (Netgen and pybind11) using
Code:
git submodule update --recursive
If you are compiling the first time. How did you configure and which system are you using?
Best regards,
Christoph
- Yarleque Medina
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
5 years 11 months ago #1321
by Yarleque Medina
Replied by Yarleque Medina on topic This is my error installing
I installed with sudo apt-get install ngsolve on ubuntu 17.04, plus I had an error when testing the jupyter-files / unit-2.9-fourthorder / fourthorder.ipynb problem, giving the following error:
Traceback (most recent call last):
File "biharm_hdg.py", line 29, in <module>
a + = SymbolicBFI (-hessenn (w) * jumpdn (v, vhat), element_boundary = True)
File "biharm_hdg.py", line 24, in hessenn
return InnerProduct (n, hesse (v) * n)
RuntimeError: T_MultVecVec: dimensions do not fit
That's why I tried to install it with:
export BASEDIR = ~ / ngsuite
mkdir -p $ BASEDIR
cd $ BASEDIR
git clone github.com/NGSolve/ngsolve.git ngsolve-src
Traceback (most recent call last):
File "biharm_hdg.py", line 29, in <module>
a + = SymbolicBFI (-hessenn (w) * jumpdn (v, vhat), element_boundary = True)
File "biharm_hdg.py", line 24, in hessenn
return InnerProduct (n, hesse (v) * n)
RuntimeError: T_MultVecVec: dimensions do not fit
That's why I tried to install it with:
export BASEDIR = ~ / ngsuite
mkdir -p $ BASEDIR
cd $ BASEDIR
git clone github.com/NGSolve/ngsolve.git ngsolve-src
5 years 11 months ago #1323
by cwinters
Replied by cwinters on topic This is my error installing
Hi,
we provide binaries for the latest ubuntu (now 18.10) and the LTS versions 16.04 and 18.04.
The version you downloaded is outdated (ngsolve-6.2.1712), since this was the last time we build binaries for ubuntu 17.04. ngsolve binaries on launchpad
The file (biharm_hdg.py) you tried to run is newer than the version of ngsolve you installed and thus did not work properly.
If you want to use binaries, you would have to update your ubuntu. Otherwise compiling for ubuntu 17.04 should still work. What did you do after cloning the repository? Did you follow all the instructions ?
One problem could be that ngsolve found the outdated netgen (installed with apt-get) and used it instead of compiling the own submodule. Try to uninstall the ngsolve package using apt-get, delete everything in your ngsolve-build folder and restart from the configuring step.
Also check that you have the submodules properly configured.
Christoph
we provide binaries for the latest ubuntu (now 18.10) and the LTS versions 16.04 and 18.04.
The version you downloaded is outdated (ngsolve-6.2.1712), since this was the last time we build binaries for ubuntu 17.04. ngsolve binaries on launchpad
The file (biharm_hdg.py) you tried to run is newer than the version of ngsolve you installed and thus did not work properly.
If you want to use binaries, you would have to update your ubuntu. Otherwise compiling for ubuntu 17.04 should still work. What did you do after cloning the repository? Did you follow all the instructions ?
One problem could be that ngsolve found the outdated netgen (installed with apt-get) and used it instead of compiling the own submodule. Try to uninstall the ngsolve package using apt-get, delete everything in your ngsolve-build folder and restart from the configuring step.
Also check that you have the submodules properly configured.
Christoph
Time to create page: 0.111 seconds