安装¶
GraphScope 目前支持的平台如下:
gcc 7.1+
Python 3.7 - 3.9
Ubuntu 18.04 or later
CentOS 7 or later
macOS 12 (Monterey) or later, with both Intel chip and Apple M1 chip
单机环境下安装¶
GraphScope 以 Python 程序包 的形式发布, 可直接通过 pip 安装。
注意: 需要满足 pip 版本 > 19.0 (or > 20.3 for macOS)
# Requires the latest pip
pip3 install --upgrade pip
# Current stable release
pip3 install --upgrade graphscope
基于 Kubernetes 安装 GraphScope 客户端¶
我们可以按照本文档的以下步骤部署一个本地 Kubernetes 集群,并加载预编译好的镜像,在 Kubernetes 环境下运行 GraphScope。
首先需要预先安装以下依赖。
Python 3.7 - 3.9 (with pip)
Local Kubernetes cluster set-up tool (e.g. Kind)
对于 Windows 和 macOS 的用户,可通过官方文档来安装上述依赖, 并在 Docker 中开启 Kubernetes 功能。 对于 Ubuntu/CentOS Linux 发行版用户,你也可以使用 [Kind](https://kind.sigs.k8s.io) 部署一个本地的 k8s 集群,Kind 的安装和部署可以参考官网的 [Quick Start](https://kind.sigs.k8s.io/docs/user/quick-start/)。 您也可以在 Windows 上安装 WSL2 来模拟 Linux 环境。
接下来,我们只需要通过 pip 安装 GraphScope 客户端:
# Requires the latest pip
pip3 install --upgrade pip
# Current stable release
pip3 install --upgrade graphscope-client