Alina Lozovskaya
commited on
Commit
·
4dc4067
1
Parent(s):
560e734
Update the installation guide in README.md
Browse files
README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
| 3 |
Working repo, we should turn this into a ReachyMini app at some point maybe ?
|
| 4 |
|
| 5 |
## Installation
|
|
|
|
|
|
|
| 6 |
You can set up the project quickly using [uv](https://docs.astral.sh/uv/):
|
| 7 |
|
| 8 |
```bash
|
|
@@ -10,7 +12,15 @@ uv venv --python 3.12.1 # Create a virtual environment with Python 3.12.1
|
|
| 10 |
source .venv/bin/activate
|
| 11 |
uv sync
|
| 12 |
```
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
## Run
|
| 16 |
|
|
|
|
| 3 |
Working repo, we should turn this into a ReachyMini app at some point maybe ?
|
| 4 |
|
| 5 |
## Installation
|
| 6 |
+
|
| 7 |
+
### Using uv
|
| 8 |
You can set up the project quickly using [uv](https://docs.astral.sh/uv/):
|
| 9 |
|
| 10 |
```bash
|
|
|
|
| 12 |
source .venv/bin/activate
|
| 13 |
uv sync
|
| 14 |
```
|
| 15 |
+
|
| 16 |
+
### Using pip
|
| 17 |
+
Alternatively, you can install using pip in editable mode:
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
python -m venv .venv # Create a virtual environment
|
| 21 |
+
source .venv/bin/activate
|
| 22 |
+
pip install -e .
|
| 23 |
+
```
|
| 24 |
|
| 25 |
## Run
|
| 26 |
|