0

在我看来,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 中使用任何其他模块一样简单。

4

1 回答 1

5

有一些非官方的二进制文件与开箱即用的与 Windows 不兼容的 python 科学扩展包一起使用。

提供的链接中有一个用于 CGAL-python 的链接,稍微向下一点。

于 2013-11-10T05:01:46.570 回答