Skip to content

Fixed broken link syntax #64

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

Merged
merged 4 commits into from
Mar 7, 2018
Merged
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
12 changes: 8 additions & 4 deletions pandas/guide/source/pandas_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ repository:
3. Set up a Python environment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Download and install `Anaconda <https://www.anaconda.com/download/>`
* Download and install `Anaconda <https://www.anaconda.com/download/>`_.

.. note::
**Windows users**: run the next commands in the Anaconda Prompt (found in the Anaconda
Expand All @@ -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="<path-to-anaconda>/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 <path-to-pandas>/ci/environment-dev.yaml``
``conda env create -n pandas_dev -f <path-to-pandas-dir>/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=<pandas-dir>/ci/requirements-optional-conda.txt``
``conda install -c defaults -c conda-forge --file=<path-to-pandas-dir>/ci/requirements-optional-conda.txt``

4. Compile C code in pandas
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down