diff --git a/pandas/guide/source/pandas_setup.rst b/pandas/guide/source/pandas_setup.rst
index 645ab28..6883175 100644
--- a/pandas/guide/source/pandas_setup.rst
+++ b/pandas/guide/source/pandas_setup.rst
@@ -64,7 +64,7 @@ repository:
3. Set up a Python environment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-* Download and install `Anaconda `
+* Download and install `Anaconda `_.
.. note::
**Windows users**: run the next commands in the Anaconda Prompt (found in the Anaconda
@@ -74,11 +74,15 @@ repository:
* If you chose to prepend Anaconda to your PATH during install adding it to your ``~/.bashrc``, just restart your terminal.
* Otherwise, run ``export PATH="/bin:$PATH"`` in your terminal. Keep in mind that it will be active exclusively in the terminal you run this command.
* Create a conda environment:
- ``conda env create -n pandas_dev -f /ci/environment-dev.yaml``
+ ``conda env create -n pandas_dev -f /ci/environment-dev.yaml``
+
+.. note::
+ **Windows users**: If you're copy-pasting the path, replace all pasted ``\`` characters with ``/`` for the command to work.
+
* Activate the new conda environment:
- ``source activate pandas_dev``
+ ``conda activate pandas_dev``
* Install pandas development dependencies:
- ``conda install -c defaults -c conda-forge --file=/ci/requirements-optional-conda.txt``
+ ``conda install -c defaults -c conda-forge --file=/ci/requirements-optional-conda.txt``
4. Compile C code in pandas
~~~~~~~~~~~~~~~~~~~~~~~~~~~