我最近升级了我的Graph Lab创建版本。在使用Jupyter控制台运行代码时,我想出了以下错误:
from __future__ import division
import graphlab
import math
import string
**Error:
ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found.
1. Ensure user account has write permission to C:\Anaconda3\envs\gl-env\lib\site-packages\graphlab
2. Run graphlab.get_dependencies() to download and install them.
3. Restart Python and import graphlab again.**
我不是CS人,不知道为什么会这样。如果有人可以建议步骤,将有所帮助。我有Python 2.7和3.5版本以及Anaconda 2和3。
此外,在上传25 mb以上的文件时,它会给出错误。不太确定,因为在升级Graphlab create之前它曾经没问题。我尝试卸载并重新安装Python和Anaconda但没有任何效果。
答案 0 :(得分:2)
首先,确保Jupyter笔记本已关闭。
import graphlab
(可能有错误消息,只需忽略它)。graphlab.get_dependencies()
终端将安装所有正确的依赖项。等待它完成。然后,您可以关闭终端窗口并再次打开Jupyter笔记本。只是尝试再次在笔记本中运行代码,它应该可以工作。
希望这有帮助!