Skip to content

Commit 6de760d

Browse files
committed
📝 add hints on quarto
1 parent f6fab1e commit 6de760d

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,28 @@ pip install -e path/to/vuegen # specify location
4242
pip install -e . # in case you pwd is in the vuegen directory
4343
```
4444

45+
### Quatro installation
46+
47+
Install quatro with vueguen if you don't have it globally installed.
48+
49+
```bash
50+
pip install -e ".[quarto]" # specify location
51+
```
52+
53+
if you use conda a conda environement you can install quatro from the conda-forge channel
54+
in case it did not work.
55+
56+
```bash
57+
conda install -c conda-forge quarto
58+
```
59+
60+
Test your quarto installation by running the following command:
61+
62+
```bash
63+
quarto check
64+
```
65+
66+
4567
## Execution
4668

4769
```bash

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,15 @@ strenum = { version = "^0.4.15", python = "<3.11" }
3131
[tool.poetry.group.dev.dependencies]
3232
ipykernel = "^6.29.5"
3333

34+
3435
[build-system]
3536
requires = ["poetry-core"]
3637
build-backend = "poetry.core.masonry.api"
3738

3839
# https://stackoverflow.com/a/60990574/9684872
3940
[tool.poetry.extras]
4041
streamlit = ["streamlit"]
42+
quarto = ["quarto", "ipykernel"]
4143

4244
# [project.scripts]
4345
# my-script = "vuegen.main:main"

0 commit comments

Comments
 (0)