无法将 Turicreate 导入 Jupyter

问题描述 投票:0回答:0

当我尝试将 turicreate 导入 Jupyter 时,我收到以下错误:

ValueError                                Traceback (most recent call last)
<ipython-input-1-1b519f14fefb> in <module>
----> 1 import turicreate

~/kazuha/lib/python3.6/site-packages/turicreate/__init__.py in <module>
     17 from turicreate.version_info import __version__
     18 
---> 19 from turicreate.data_structures.sgraph import Vertex, Edge
     20 from turicreate.data_structures.sgraph import SGraph
     21 from turicreate.data_structures.sarray import SArray

~/kazuha/lib/python3.6/site-packages/turicreate/data_structures/__init__.py in <module>
     16 
     17 from . import image
---> 18 from . import sframe
     19 from . import sarray
     20 from . import sgraph

~/kazuha/lib/python3.6/site-packages/turicreate/data_structures/sframe.py in <module>
     29 
     30 import array
---> 31 from prettytable import PrettyTable
     32 from textwrap import wrap
     33 import datetime

我使用 pip list 来确保我在下载 turicreate 的相同环境中使用 Jupyter,并且它已检出。这个错误发生在我通过 Jupyter 卸载并重新安装 turicreate 之后,因为 turicreate.SFrame() 没有正常运行。我对编程很陌生,希望得到任何帮助。提前谢谢你。

jupyter valueerror turi-create
© www.soinside.com 2019 - 2024. All rights reserved.