You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. **Create a virtual environment in the current working directory**:
22
+
```sh
23
+
uv venv
24
+
```
25
+
26
+
4. **Install dependencies**:
27
+
```sh
28
+
uv sync --all-extras
29
+
```
30
+
31
+
See `just --list`for linting, formatting and build commands.
32
+
33
+
34
+
### Use SDK Locally
35
+
1. Create a folder on your own device `mkdir project;cd project`
36
+
2. Initialize the python project `uv``uv init . --python 3.11`
37
+
3. Obtain the project path `PATH_TO_SDK=/Users/YOU_USER/uipath-llamaindex-python/uipath-llamaindex`
38
+
4. Install the sdk in editable mode `uv add --editable ${PATH_TO_SDK}`
39
+
40
+
:information_source: Instead of cloning the project into `.venv/lib/python3.11/site-packages/uipath-llamaindex`, this mode creates a file named `_uipath-mcp.pth` inside `.venv/lib/python3.11/site-packages`. This file contains the value of `PATH_TO_SDK`, which is added to `sys.path`—the list of directories where python searches for packages. (Run `python -c 'import sys; print(sys.path)'` to see the entries.)
0 commit comments