Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add quotation marks for marimo[sql] commands #2807

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/working_with_data/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To create a SQL cell, you first need to install additional dependencies,
including [duckdb](https://duckdb.org/):

```bash
pip install marimo[sql]
pip install 'marimo[sql]'
```

```{admonition} Examples
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/editor/renderers/CellArray.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ const AddCellButtons: React.FC<{
<div className="flex flex-col">
<span>
Additional dependencies required:
<Kbd className="inline">pip install marimo[sql]</Kbd>.
<Kbd className="inline">pip install 'marimo[sql]'</Kbd>.
</span>
<span>
You will need to restart the notebook after installing.
Expand Down
2 changes: 1 addition & 1 deletion marimo/_tutorials/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __(mo):
including [duckdb](https://duckdb.org/). Obtain these dependencies with

```bash
pip install marimo[sql]
pip install 'marimo[sql]'
```
"""
)
Expand Down
Loading