File size: 764 Bytes
ef16689
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

# Building Project Documentation

To build the project's documentation locally, use the `Makefile` located in the `docs` directory.

## Prerequisites

First, ensure you have activated the `biomni_e1` conda environment. Then, install the required dependencies:

```bash
pip install sphinx sphinx-rtd-theme
```


## Build the Documentation

1.  Navigate to the `docs` directory:

    ```bash
    cd docs
    ```

2.  Run the `make html` command:

    ```bash
    make html
    ```

    This command will automatically generate the API documentation and build all HTML files.


## View the Documentation

Once the build is complete, you can find the generated documentation in the `docs/build/html` directory.

Open the `index.html` file in your browser to view it.