From 5ec760635b79029beabee084e28cb779ae4831a7 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Fri, 22 Sep 2023 15:14:05 +0400 Subject: [PATCH] Recommend installing Eland in a virtual environment (#606) --- docs/guide/installation.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/installation.asciidoc b/docs/guide/installation.asciidoc index 62e8423..69763cf 100644 --- a/docs/guide/installation.asciidoc +++ b/docs/guide/installation.asciidoc @@ -1,14 +1,14 @@ [[installation]] == Installation -Eland can be installed with https://pip.pypa.io[pip] from https://pypi.org/project/eland[PyPI]: +Eland can be installed with https://pip.pypa.io[pip] from https://pypi.org/project/eland[PyPI]. We recommend https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/[using a virtual environment] when installing with pip: [source,sh] ----------------------------- $ python -m pip install eland ----------------------------- -and can also be installed with https://docs.conda.io[Conda] from https://anaconda.org/conda-forge/eland[Conda Forge]: +Alternatively, Eland can be installed with https://docs.conda.io[Conda] from https://anaconda.org/conda-forge/eland[Conda Forge]: [source,sh] ------------------------------------