Skip to content

DOC: Add command to install appropriate requirements.txt during dev venv setup #27237

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
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
6 changes: 5 additions & 1 deletion doc/devel/development_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,13 @@ The simplest way to do this is to use either Python's virtual environment
On some systems, you may need to type ``python3`` instead of ``python``.
For a discussion of the technical reasons, see `PEP-394 <https://peps.python.org/pep-0394>`_.

Install the Python dependencies with ::

pip install -r requirements/dev/dev-requirements.txt

.. tab-item:: conda environment

Create a new `conda`_ environment with ::
Create a new `conda`_ environment and install the Python dependencies with ::

conda env create -f environment.yml

Expand Down