Skip to content

Commit

Permalink
update README to clarify libmysqlclient-dev requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
bcyphers committed Mar 2, 2018
1 parent c481e25 commit d9600fb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,20 @@ This section describes the quickest way to get started with ATM on a modern mach
```

2. **Install a database**
You will need to install the libmysqlclient-dev package (for sqlalchemy) and at least one of the following databases.

```
$ sudo apt install libmysqlclient-dev
```

- for SQLite (simpler):
```
$ sudo apt install sqlite3
```

- for MySQL:
```
$ sudo apt install mysql-server mysql-client libmysqlclient-dev
$ sudo apt install mysql-server mysql-client
```

3. **Install python dependencies**
Expand Down

0 comments on commit d9600fb

Please sign in to comment.