Ubuntu mycli install (mysql terminal - modern alternative to the default MySQL client)

User Avatar
👤 admin
🔴 Admin
✍️ The most important thing in the world is to not be alone.
⏳ Last active: 15 Apr 2025 at 16:01
📅 Created: 12 Feb 2021 at 14:38
👀 Viewed: 19 times
✉️ Send Email

Mycli is a modern alternative to the default MySQL client. This tool does to MySQL what bpython does to the standard Python REPL. Mycli will auto-complete keywords, table names, columns, and functions as you type them.

The completion suggestions are context-sensitive. For example, after the SELECT * FROM, only tables from the current database are listed in the completion, rather than every possible keyword under the sun.

  1. install some packages:

apt-get install python3-click -y
  1. now to install the software

apt-get install mycli -y
If you want to comment: Login or Register