导入 graphlab 无法正常工作
import graphlab does not work properly
我是 graphlab create 的初学者。我的系统上安装了 Python 3,我正在使用 graph create launcher 的帮助在 jupyter notebook 上工作。
当我尝试导入 graphlab 时出现以下通知:
ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found.
1. Ensure user account has write permission to C:\Users\bandriya\Anaconda2\envs\gl-env\lib\site-packages\graphlab
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。
我认为当您在计算机上安装 graphlab 时,某些依赖项或模块没有正确下载。
我是 graphlab create 的初学者。我的系统上安装了 Python 3,我正在使用 graph create launcher 的帮助在 jupyter notebook 上工作。
当我尝试导入 graphlab 时出现以下通知:
ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found.
1. Ensure user account has write permission to C:\Users\bandriya\Anaconda2\envs\gl-env\lib\site-packages\graphlab
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。 我认为当您在计算机上安装 graphlab 时,某些依赖项或模块没有正确下载。