Skip to content

Commit 366450d

Browse files
authored
Merge pull request #48 from sunsingerus/master
rename pip to pip3 for Python 3.x
2 parents e61c199 + b7ef4c0 commit 366450d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,24 @@ Utility to import data into ClickHouse from MySQL (mainly) and/or CSV files
3030
# Requirements
3131

3232
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.
3335

3436
`MySQLdb` package is used for communication with MySQL:
3537
```bash
36-
pip install mysqlclient
38+
pip3 install mysqlclient
3739
```
3840

3941
`mysql-replication` package is used for communication with MySQL also:
4042
[https://github.com/noplay/python-mysql-replication](https://github.com/noplay/python-mysql-replication)
4143
```bash
42-
pip install mysql-replication
44+
pip3 install mysql-replication
4345
```
4446

4547
`clickhouse-driver` package is used for communication with ClickHouse:
4648
[https://github.com/mymarilyn/clickhouse-driver](https://github.com/mymarilyn/clickhouse-driver)
4749
```bash
48-
pip install clickhouse-driver
50+
pip3 install clickhouse-driver
4951
```
5052

5153

0 commit comments

Comments
 (0)