Closed dujbo closed 3 years ago
Mycli is a Python package. Pip has tools for downloading and installing those offline. Steps:
mkdir /tmp/mycli_offline
cd /tmp/mycli_offline
pip download mycli
(this will download package and dependencies into current directory)pip install --no-index --find-links . mycli
(this will install mycli from current directory into current python interpreter).
Thanks.