Spaces:
Sleeping
Sleeping
git clone installation guide
Browse files
README.md
CHANGED
@@ -96,10 +96,17 @@ Note: While Ollama is the default choice for easy setup, KnowLang supports other
|
|
96 |
|
97 |
|
98 |
### Installation
|
99 |
-
|
100 |
```bash
|
101 |
pip install knowlang
|
102 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
### Basic Usage
|
105 |
|
|
|
96 |
|
97 |
|
98 |
### Installation
|
99 |
+
You can install KnowLang via pip:
|
100 |
```bash
|
101 |
pip install knowlang
|
102 |
```
|
103 |
+
Alternatively, you can clone the repository and install it in editable mode:
|
104 |
+
```bash
|
105 |
+
git clone https://github.com/kimgb415/know-lang.git
|
106 |
+
cd know-lang
|
107 |
+
pip install -e .
|
108 |
+
```
|
109 |
+
This allows you to make changes to the source code and have them immediately reflected without reinstalling the package.
|
110 |
|
111 |
### Basic Usage
|
112 |
|