Alina Lozovskaya commited on
Commit
4dc4067
·
1 Parent(s): 560e734

Update the installation guide in README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
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
- > Note: The `pyproject.toml` expects `reachy-mini-dances-library` to be located in the same directory as this project.
 
 
 
 
 
 
 
 
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