You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-8
Original file line number
Diff line number
Diff line change
@@ -26,9 +26,9 @@ To run GraphScope on your local computer, the following dependencies or tools ar
26
26
27
27
- Docker
28
28
- Python >= 3.6 (with pip)
29
-
- Local Kubernetes cluster set-up tool (e.g. [Minikube](https://minikube.sigs.k8s.io) or [Kind](https://kind.sigs.k8s.io))
29
+
- Local Kubernetes cluster set-up tool (e.g. [Kind](https://kind.sigs.k8s.io))
30
30
31
-
On macOS, you can follow the official guides to install them.
31
+
On macOS, you can follow the official guides to install them and enable Kubernetes in Docker.
32
32
For Ubuntu/CentOS Linux distributions, we provide a script to install the above
33
33
dependencies and prepare the environment.
34
34
On Windows, you may want to install [Ubuntu](https://ubuntu.com/blog/ubuntu-on-wsl-2-is-generally-available) on [WSL2](https://docs.microsoft.com/zh-cn/windows/wsl/install-win10) to use the script.
@@ -78,26 +78,29 @@ To use GraphScope, we need to establish a session in a python interpreter.
78
78
import os
79
79
import graphscope
80
80
81
-
# Setting an env for mounting test data from local disk,
82
-
# hence we can access data inside the pods.
83
-
84
81
# assume we mount `~/test_data` to `/testingdata` in pods.
0 commit comments