Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,22 @@ This section is for those who want to contribute to opensourceleg or need to mod
```bash
pip install uv
```
OR
If you are unable to install uv, do

```bash
pip install uv --break-system-packages
```

If you are unable to find uv command then add following line in your `.bashrc` script :
```bash
export PATH="$PATH:/home/$USER/.local/bin"
```

Then, open a new shell or reload your shell configuration:
```bash
source ~/.bashrc
```
For other installation methods (including standalone installers), see the [UV installation guide](https://docs.astral.sh/uv/getting-started/installation/).

- **Git**: Version control system, see [Git installation guide](https://git-scm.com/downloads)
Expand Down