@@ -8,29 +8,47 @@ This is Python Client Library for GridDB.
8
8
Installation
9
9
=========================
10
10
11
- Package dependencies
11
+ 1. Package dependencies
12
+ -------------------------
12
13
13
- * GridDB C Client
14
+ GridDB C Client
15
+ ^^^^^^^^^^^^^^^^^^^^^^^^^
14
16
15
- Download and install RPM or DEB package in GridDB C Client (https://github.com/griddb/c_client/releases).
17
+ * ** On Linux **
16
18
17
- Install RPM package by this command:
19
+ Download and install RPM or DEB package in GridDB C Client (https://github.com/griddb/c_client/releases).
18
20
19
- $ sudo yum localinstall package_name.rpm
21
+ Install RPM package by this command::
20
22
21
- Install DEB package by this command:
23
+ $ sudo yum localinstall package_name.rpm
22
24
23
- $ sudo dpkg -i package_name.deb
25
+ Install DEB package by this command::
24
26
25
- * Pandas and Numpy
27
+ $ sudo dpkg -i package_name.deb
26
28
27
- Install Pandas and Numpy by these commands:
29
+ * ** On MacOS **
28
30
29
- $ python -m pip install numpy
31
+ Because GridDB Python Client already included C Client Library, so don't need install GridDB C Client on MacOS.
30
32
31
- $ python -m pip install pandas
33
+ GridDB C Client Libraries installed at * path/to/python/sites-package/ *
32
34
33
- Install the package by the following:
35
+ GridDB C Client licenses and header installed at * path/to/python/sites-package/griddb/griddb-c-client *
34
36
35
- $ pip install griddb_python
37
+ Example::
36
38
39
+ ~/.pyenv/versions/3.6.9/lib/python3.6/site-packages/griddb/
40
+
41
+ Pandas and Numpy
42
+ ^^^^^^^^^^^^^^^^^^^^^^^^^
43
+
44
+ * Install Pandas and Numpy by these commands::
45
+
46
+ $ python -m pip install numpy
47
+ $ python -m pip install pandas
48
+
49
+ 2. Install griddb_python
50
+ -------------------------
51
+
52
+ Install the griddb_python by this command::
53
+
54
+ $ python -m pip install griddb_python
0 commit comments