You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, the class diagram for the project is presented below to illustrate the architecture and relationships between classes:
32
32
@@ -36,33 +36,32 @@ Also, the class diagram for the project is presented below to illustrate the arc
36
36
</figure>
37
37
</p> -->
38
38
39
-

39
+

40
40
41
41
## Installation
42
42
43
-
You can install the package for development from this repository by running the following command:
43
+
Vuegen is available on [PyPI][vuegen-pypi] and can be installed using pip:
44
+
45
+
```bash
46
+
pip install vuegen
47
+
```
48
+
49
+
You can also install the package for development from this repository by running the following command:
44
50
45
51
```bash
46
52
pip install -e path/to/vuegen # specify location
47
53
pip install -e .# in case your pwd is in the vuegen directory
48
54
```
49
55
50
-
This will both install `quarto` and `streamlit` as our backends for report generation.
51
-
52
-
### Verify quarto installation
56
+
### Quarto installation
53
57
54
-
Test your quarto installation by running the following command:
58
+
Vuegen uses [Quarto][quarto] to generate various report types. The pip insallation includes quarto using the [quarto-cli Python library][quarto-cli-pypi]. To test if quarto is installed in your computer, run the following command:
55
59
56
60
```bash
57
61
quarto check
58
62
```
59
63
60
-
If you use conda a conda environement you can install quatro from the conda-forge channel
61
-
in case it did not work.
62
-
63
-
```bash
64
-
conda install -c conda-forge quarto
65
-
```
64
+
If quarto is not installed, you can download the command-line interface from the [Quarto website][quarto-cli] for your operating system.
66
65
67
66
## Execution
68
67
@@ -83,7 +82,15 @@ It's also possible to provide a configuration file instead of a directory:
0 commit comments