模块方法显示奇怪的行为

时间:2017-10-25 06:16:49

标签: python

伙计我在使用pip时遇到问题我从OS安装目前我的from drawtree import draw_level_order draw_level_order('{3,9,20,#,#,15,7}') 是Windows python36 64位版本是安装。当我使用并尝试导入此模块时

Traceback (most recent call last):
  File "C:/Users/Root/PycharmProjects/untitled/src/Test.py", line 1, in <module>
    from drawtree import draw_level_order
  File "C:\Python36-64\lib\site-packages\drawtree\__init__.py", line 7, in <module>
    from drawtree import draw_bst, draw_random_bst, draw_level_order
ImportError: cannot import name 'draw_bst'

为什么python会发出像这样的奇怪错误

going

1 个答案:

答案 0 :(得分:0)

PyPI上的drawtree版本目前与Python 3不兼容。如果你真的想在Python 3上使用drawtreeGithub上有一个兼容Python 3的版本。