File tree 1 file changed +5
-3
lines changed 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,22 +30,24 @@ Utility to import data into ClickHouse from MySQL (mainly) and/or CSV files
30
30
# Requirements
31
31
32
32
Data reader requires ** Python 3.x** with additional modules to be installed.
33
+ In most distributions Python 3.x have ` pip ` utility named as ` pip3 ` , so we'll use this naming.
34
+ However, you may have it called differently.
33
35
34
36
` MySQLdb ` package is used for communication with MySQL:
35
37
``` bash
36
- pip install mysqlclient
38
+ pip3 install mysqlclient
37
39
```
38
40
39
41
` mysql-replication ` package is used for communication with MySQL also:
40
42
[ https://github.com/noplay/python-mysql-replication ] ( https://github.com/noplay/python-mysql-replication )
41
43
``` bash
42
- pip install mysql-replication
44
+ pip3 install mysql-replication
43
45
```
44
46
45
47
` clickhouse-driver ` package is used for communication with ClickHouse:
46
48
[ https://github.com/mymarilyn/clickhouse-driver ] ( https://github.com/mymarilyn/clickhouse-driver )
47
49
``` bash
48
- pip install clickhouse-driver
50
+ pip3 install clickhouse-driver
49
51
```
50
52
51
53
You can’t perform that action at this time.
0 commit comments