Skip to content

Commit c545475

Browse files
author
A-lamo
committed
Merge branch 'main' of https://github.com/ci-group/ariel
2 parents 6678629 + 255fbff commit c545475

File tree

26 files changed

+2194
-944
lines changed

26 files changed

+2194
-944
lines changed

.vscode/tasks.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
"run",
1212
"${file}"
1313
],
14+
"presentation": {
15+
"reveal": "always",
16+
"panel": "new",
17+
"clear": true
18+
},
1419
"group": {
1520
"kind": "build",
1621
"isDefault": true,
17-
"presentation": {
18-
"reveal": "always",
19-
"panel": "new"
20-
}
2122
},
2223
},
2324
{

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,30 @@
1515
* [vscode containers tut](https://code.visualstudio.com/docs/devcontainers/tutorial)
1616
1717
--- -->
18+
19+
## Documentation
20+
[ARIEL main documentation page](https://ci-group.github.io/ariel/)
21+
1822
## Installation and Running
1923

2024
This project uses [uv](https://docs.astral.sh/uv/).
2125

22-
To run the code examples please do
23-
26+
To run the code examples, please do:
27+
1. Clone the repository
28+
```bash
29+
git clone https://github.com/ci-group/ariel.git
30+
```
31+
3. Create a uv virtual environment inside the repository folder
32+
```bash
33+
uv venv
34+
```
35+
4. Sync the virtual environment with the requirements
2436
```bash
25-
uv venv
2637
uv sync
27-
uv run examples/z_ec_course/0_render_single_frame.py
38+
```
39+
5. Run an example, in this case, brain evolution (aka learning) using:
40+
```bash
41+
uv run examples/re_book/1_brain_evolution.py
2842
```
2943

3044
<!-- ## TODO: Installation

docs/source/installation_guide.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,26 @@ ARIEL contains and requires many other libraries to function properly, and avoid
1515

1616
## Installation with uv
1717

18+
The current version of ARIEL is only available on GitHub. This page will be updated once an alternative installation method is made.
19+
20+
### Installation Steps
21+
1. Clone the repository
22+
```bash
23+
git clone https://github.com/ci-group/ariel.git
24+
```
25+
3. Create a uv virtual environment inside the repository folder
26+
```bash
27+
uv venv
28+
```
29+
4. Sync the virtual environment with the requirements
30+
```bash
31+
uv sync
32+
```
33+
5. Run an example, in this case, brain evolution (aka learning) using:
34+
```bash
35+
uv run examples/re_book/1_brain_evolution.py
36+
```
37+
<!--
1838
1. Install `uv` (if not already installed):
1939
2040
```bash
@@ -34,7 +54,7 @@ Run the following command to have uv create a virtual environment, double check
3454
uv sync
3555
```
3656
37-
You can activate the uv virtual environment the same way you would activate a normal one using `.\.venv\Scripts\activate`
57+
You can activate the uv virtual environment the same way you would activate a normal one using `.\.venv\Scripts\activate` -->
3858

3959
## Installation using dev containers
4060

0 commit comments

Comments
 (0)