在我看来,CGAL
文档没有很好的记录。我完全不知道如何在 Python 中使用他们的包。
我已经CGAL-4.3
在我的 Windows 上安装了,我试着做
In [233]: """ python 2.4"""
.....: from CGAL.Alpha_shapes_2 import *
.....: from CGAL.Triangulations_2 import Delaunay_triangulation_2
.....: from CGAL.Kernel import *
.....: from ShapeHelper import *
.....: import numpy as np
.....: import sys
错误信息说
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-233-4807de38949d> in <module>()
1 """ python 2.4"""
----> 2 from CGAL.Alpha_shapes_2 import *
3 from CGAL.Triangulations_2 import Delaunay_triangulation_2
4 from CGAL.Kernel import *
5 from ShapeHelper import *
ImportError: No module named CGAL.Alpha_shapes_2
我应该怎么做才能正确导入这些模块?
在我可以导入它们之后,它就像在 python 中使用任何其他模块一样简单。