ImportError: No module named 'graphframes' databricks

ImportError: No module named 'graphframes' databricks

我正在尝试将图形框架导入到我的数据块笔记本中

    from graphframes import *     

但失败并显示以下错误消息

ImportError: No module named 'graphframes'

如何 add/import 进入 databricks notebook,感谢任何帮助。

graphframes 不是 python 的默认依赖项。您应该安装此依赖项。

您需要通过打开终端并输入 pip install graphframes

来安装 graphframes 模块

注意: 默认情况下,databricks 上未安装 "graphframes"。

您需要明确安装包。

您可以使用不同的方法安装软件包。

方法一:使用 pip cmdlet 安装外部包。

语法: %sh /databricks/python3/bin/pip install <packagename>

%sh
/databricks/python3/bin/pip install graphframes

方法 2: 使用 Databricks library utilities

语法:

dbutils.library.installPyPI("pypipackage", version="version", repo="repo", extras="extras")
dbutils.library.restartPython()  # Removes Python state, but some libraries might not work without calling this function

要使用 databricks 库实用程序安装 graphframes,请使用以下命令。

dbutils.library.installPyPI("graphframes") 

尝试了本文 GraphFrames Documentation 中提供的示例。

笔记本输出:

希望这对您有所帮助。