Skip to content

Update path to environment.yaml and requirements-dev.txt #155

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 1 commit into from
Jun 27, 2019
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
4 changes: 2 additions & 2 deletions pandas/guide/_sources/pandas_setup.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ To fetch the latest updates from the pandas repository, follow the steps in

* Create a conda environment: ::

conda env create -n pandas_dev -f <path-to-pandas-dir>/ci/environment-dev.yaml
conda env create -n pandas_dev -f <path-to-pandas-dir>/environment.yaml

.. note::
**Windows users**: If you're copy-pasting the path, replace all pasted
Expand All @@ -116,7 +116,7 @@ To fetch the latest updates from the pandas repository, follow the steps in

* Install pandas development dependencies: ::

conda install -c defaults -c conda-forge --file=<path-to-pandas-dir>/ci/requirements-optional-conda.txt
conda install -c defaults -c conda-forge --file=<path-to-pandas-dir>/requirements-dev.txt

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