graph_toolで遊んでいる間にこれを気づいた。いくつかのモジュール属性は、ipythonから実行されるときにのみ利用可能であるように見えます。 run example.y', but from the command line,
Pythonのexample.py`収率ipythonの興味深いインポート動作
AttributeError: 'module' object has no attribute 'draw'
ipython example.py
ための真同じホールドを用いipythonから最も簡単な例(example.py)エラーなし
import graph_tool as gt
g = gt.Graph()
gt.draw.sfdp_layout(g)
実行します。私はこれを引き起こす原因については迷っています。私はドローモジュールにアクセスしたいと思いますが、私はこれを行うことしかできないようです。from graph_tool.draw import *
何か助けや説明をいただければ幸いです。