Skip to content

rename pip to pip3 for Python 3.x #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 30, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,24 @@ Utility to import data into ClickHouse from MySQL (mainly) and/or CSV files
# Requirements

Data reader requires **Python 3.x** with additional modules to be installed.
In most distributions Python 3.x have `pip` utility named as `pip3`, so we'll use this naming.
However, you may have it called differently.

`MySQLdb` package is used for communication with MySQL:
```bash
pip install mysqlclient
pip3 install mysqlclient
```

`mysql-replication` package is used for communication with MySQL also:
[https://github.com/noplay/python-mysql-replication](https://github.com/noplay/python-mysql-replication)
```bash
pip install mysql-replication
pip3 install mysql-replication
```

`clickhouse-driver` package is used for communication with ClickHouse:
[https://github.com/mymarilyn/clickhouse-driver](https://github.com/mymarilyn/clickhouse-driver)
```bash
pip install clickhouse-driver
pip3 install clickhouse-driver
```


Expand Down