导入图形实验室无法正常工作



我是graphlab create的初学者。我的系统上安装了Python 3,我正在图形创建启动器的帮助下处理jupyter笔记本。

当我尝试导入graphlab时,会出现以下通知:

ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found.
1. Ensure user account has write permission to C:UsersbandriyaAnaconda2envsgl-envlibsite-packagesgraphlab
2. Run graphlab.get_dependencies() to download and install them.
3. Restart Python and import graphlab again.
By running the above function, you agree to the following licenses.
* libstdc++: https://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html
* xz: http://git.tukaani.org/?p=xz.git;a=blob;f=COPYING

这是什么意思?

尝试在 ipython 笔记本上运行以下行:

graphlab.get_dependencies()

您应该看到以下内容:

运行此功能即表示您同意以下许可。

  • libstdc++: https://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html
  • xz: http://git.tukaani.org/?p=xz.git;a=blob;f=COPYING

正在下载 xz。 提取 xz。 下载 gcc-libs。 提取 gcc-libs。 将 gcc-libs 复制到安装目录中。

完成后,退出笔记本,然后重新启动它。您应该能够导入图形实验室。 我认为当您在计算机上安装 graphlab 时,某些依赖项或模块尚未正确下载。

最新更新