dbcli / mycli

A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.
http://mycli.net
Other
11.5k stars 664 forks source link

How to insall offline? #987

Closed dujbo closed 3 years ago

dujbo commented 3 years ago

Thanks.

j-bennet commented 3 years ago

Mycli is a Python package. Pip has tools for downloading and installing those offline. Steps:

  1. mkdir /tmp/mycli_offline
  2. cd /tmp/mycli_offline
  3. pip download mycli (this will download package and dependencies into current directory)
  4. pip install --no-index --find-links . mycli (this will install mycli from current directory into current python interpreter).