From 66e4d70d9f175d98befc27b5a09920c43538b7ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Carvalho?= Date: Fri, 2 Aug 2024 10:39:56 -0300 Subject: [PATCH] doc - install instructions --- README.md | 2 +- docs/elements/lists.md | 2 +- docs/elements/selects.md | 2 +- docs/elements/tables.md | 2 +- docs/index.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 15cf63d..3c31b4b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/elements/lists.md b/docs/elements/lists.md index ab48c9e..7b8e916 100644 --- a/docs/elements/lists.md +++ b/docs/elements/lists.md @@ -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() diff --git a/docs/elements/selects.md b/docs/elements/selects.md index 11c4539..7067ccd 100644 --- a/docs/elements/selects.md +++ b/docs/elements/selects.md @@ -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() diff --git a/docs/elements/tables.md b/docs/elements/tables.md index 9bafce9..7a2d708 100644 --- a/docs/elements/tables.md +++ b/docs/elements/tables.md @@ -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() diff --git a/docs/index.md b/docs/index.md index 5a1d2b6..9c6639b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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