File tree Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -6,19 +6,33 @@ AMP-RSL-RL is a reinforcement learning library that extends the Proximal Policy
6
6
7
7
## 📦 Installation
8
8
9
- First, clone the repository and install it using:
9
+ The repository is available on PyPI under the package name ** amp-rl-rsl ** . You can install it directly using pip :
10
10
11
11
``` bash
12
- pip install .
12
+ pip install amp-rl-rsl
13
13
```
14
14
15
- Or in editable/development mode:
15
+ Alternatively, if you prefer to clone the repository and install it locally, follow these steps:
16
+
17
+ 1 . Clone the repository:
18
+ ``` bash
19
+ git clone https://github.com/< your-username> /amp_rsl_rl.git
20
+ cd amp_rsl_rl
21
+ ```
22
+
23
+ 2. Install the package:
24
+ ` ` ` bash
25
+ pip install .
26
+ ` ` `
27
+
28
+ For editable/development mode:
16
29
17
30
` ` ` bash
18
31
pip install -e .
19
32
` ` `
20
33
21
- If you want to run the examples, please install it with
34
+ If you want to run the examples, please install with:
35
+
22
36
` ` ` bash
23
37
pip install .[examples]
24
38
` ` `
@@ -30,7 +44,7 @@ The required dependencies include:
30
44
- ` torch`
31
45
- ` rsl-rl-lib`
32
46
33
- These will be automatically installed via ` pip ` .
47
+ These will be automatically installed via pip.
34
48
35
49
---
36
50
You can’t perform that action at this time.
0 commit comments