From 336f649e13a7e2dee0adf1a69e62392b9abef6a2 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Sat, 14 Apr 2018 16:20:23 +0800 Subject: [PATCH] revise as suggested --- docs/advanced.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/advanced.rst b/docs/advanced.rst index 24902ecc..364cea67 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -105,13 +105,13 @@ This will fail a build if the ``Pipfile.lock`` is out–of–date, instead of ge ☤ Pipenv and Other Python Distributions --------------------------------------- -To use Pipenv with a 3rd-party Python distribution, you simply provide the path to the Python binary:: +To use Pipenv with a third-party Python distribution(e.g. Anaconda), you simply provide the path to the Python binary:: - $ pipenv install --python=/path/to/anaconda/python + $ pipenv install --python=/path/to/python -To reuse Conda–installed Python packages, use the ``--site-packages`` flag:: +Anaconda uses Conda to manage packages. To reuse Conda–installed Python packages, use the ``--site-packages`` flag:: - $ pipenv --python=/path/to/anaconda/python --site-packages + $ pipenv --python=/path/to/python --site-packages ☤ Generating a ``requirements.txt`` -----------------------------------