diff --git a/README.md b/README.md index 4b30a5f3..eaf62118 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Although the installation includes PyTorch, the best and recommended way is to f Once, you have got Pytorch installed, just use: ```bash -pip install -U pytorch_tabular[extra] +pip install -U “pytorch_tabular[extra]” ``` to install the complete library with extra dependencies (Weights&Biases & Plotly). @@ -42,7 +42,7 @@ to install the complete library with extra dependencies (Weights&Biases & Plotly And : ```bash -pip install -U pytorch_tabular +pip install -U “pytorch_tabular” ``` for the bare essentials. diff --git a/docs/gs_installation.md b/docs/gs_installation.md index d98c3c64..2b1526ea 100644 --- a/docs/gs_installation.md +++ b/docs/gs_installation.md @@ -5,7 +5,7 @@ Once, you have got PyTorch installed and working, just use: ```bash - pip install pytorch_tabular[extra] + pip install "pytorch_tabular[extra]" ``` to install the complete library with extra dependencies: @@ -17,7 +17,7 @@ to install the complete library with extra dependencies: And : ``` bash - pip install pytorch_tabular + pip install "pytorch_tabular" ``` for the bare essentials.