Graph tool version 2.68
Operating system Centos 8
Hi, I am using this program surface morphometrics(GitHub - GrotjahnLab/surface_morphometrics: Morphometrics for Membrane Surfaces Segmented from Cryo-ET or other volumetric imaging.). The program uses graph-tool. When I execute the Program it had the following error ImportError: dynamic module does not define module export function (PyInit_libgraph_tool_core)
(morphometrics) kaezhila@blue ~/software/surface_morphometrics-1.1 $ > python segmentation_to_meshes.py config.yml
Info: Module sympy could not be loaded. However, this is not a problem for running Pyto, because sympy is currently used only for development.
Warning: Pyseg could not be loaded. Therefore, calling from_pyseg() method of pyto.spatial.ParticleSets will fail, but everything else should be fine.
Traceback (most recent call last):
File "/home/kaezhila/software/surface_morphometrics-1.1/segmentation_to_meshes.py", line 25, in <module>
import ply2vtp
File "/home/kaezhila/software/surface_morphometrics-1.1/ply2vtp.py", line 16, in <module>
from pycurv import pycurv_io as io
File "/home/kaezhila/.local/lib/python3.9/site-packages/pycurv/__init__.py", line 9, in <module>
from .graphs import SegmentationGraph
File "/home/kaezhila/.local/lib/python3.9/site-packages/pycurv/graphs.py", line 5, in <module>
from graph_tool import Graph
File "/home/kaezhila/.conda/envs/morphometrics/lib/python3.9/site-packages/graph_tool/__init__.py", line 118, in <module>
dl_import("from . import libgraph_tool_core as libcore")
File "/home/kaezhila/.conda/envs/morphometrics/lib/python3.9/site-packages/graph_tool/dl_import.py", line 44, in dl_import
exec(import_expr, local_dict, global_dict)
File "<string>", line 1, in <module>
ImportError: dynamic module does not define module export function (PyInit_libgraph_tool_core)
Further details of how I installed the program and graph tool
name: morphometrics
dependencies:
- conda-forge::python=3.9
- conda-forge::pyqt
- conda-forge::matplotlib=3.3.3
- conda-forge::pandas
- conda-forge::graph-tool
- conda-forge::pathlib
- conda-forge::pip>=20.0.2
Is there any work around this or could be solved?