Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Latest commit

 

History

History
37 lines (20 loc) · 1.41 KB

INSTALLATION.md

File metadata and controls

37 lines (20 loc) · 1.41 KB

We have include all dependent libraries into setup.cfg, so that they will be automatically installed when you install cl-lite through pip. You are free to manually install your prefered version of these dependencies unless they conflict with cl-lite.

Though this library has not been published to PyPI, you can install it from GitHub or a local clone of cl-lite.

Install from GitHub

This is the easiest and the recommend way to use cl-lite without modification, just run the following command in any shell:

pip install git+https://github.com/gqk/cl-lite.git

or run the following command to install a specific version:

pip install git+https://github.com/gqk/[email protected]

Though installed as a global library, you are allowed to flexiblely derive or override any class to fit you requirements. You can find some useful exemples in cl-lite-projects.

Please refer to pip's VCS Support for more information.

Install from a local clone

If you want directly modify cl-lite for testing or other purposes, you can install it from a local clone with -e:

git clone https://github.com/gqk/cl-lite.git /path/to/cl-lite

pip install -e /path/to/cl-lite

Please refer to pip's document for more information.