Skip to content

Commit

Permalink
doc - install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
jjpaulo2 committed Aug 2, 2024
1 parent 525242a commit 66e4d70
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pip install fastrpa
To install also, packages to help you to debug your application, install with **\[debug\]** extras:

```
pip install fastrpa[debug]
pip install "fastrpa[debug]"
```

### How to use
Expand Down
2 changes: 1 addition & 1 deletion docs/elements/lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ False
### Print the items of the list

!!! warning "Extra needed!"
To use this method, you need to install the **debug** extras, as [shown here](../index.md#installation), with the command `pip install fastrpa[debug]`.
To use this method, you need to install the **debug** extras, as [shown here](../index.md#installation), with the command `pip install "fastrpa[debug]"`.

```python linenums="1"
my_list.print()
Expand Down
2 changes: 1 addition & 1 deletion docs/elements/selects.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ False
### Print the options of the select

!!! warning "Extra needed!"
To use this method, you need to install the **debug** extras, as [shown here](../index.md#installation), with the command `pip install fastrpa[debug]`.
To use this method, you need to install the **debug** extras, as [shown here](../index.md#installation), with the command `pip install "fastrpa[debug]"`.

```python linenums="1"
my_select.print()
Expand Down
2 changes: 1 addition & 1 deletion docs/elements/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ False
### Print the table in console

!!! warning "Extra needed!"
To use this method, you need to install the **debug** extras, as [shown here](../index.md#installation), with the command `pip install fastrpa[debug]`.
To use this method, you need to install the **debug** extras, as [shown here](../index.md#installation), with the command `pip install "fastrpa[debug]"`.

```python linenums="1"
my_table.print()
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pip install fastrpa
To install also, packages to help you to debug your application, install with **debug** extras:

```
pip install fastrpa[debug]
pip install "fastrpa[debug]"
```

## Your first instance
Expand Down

0 comments on commit 66e4d70

Please sign in to comment.