diff --git a/source/distributing.rst b/source/distributing.rst index 65d549d7b..b277b63ac 100644 --- a/source/distributing.rst +++ b/source/distributing.rst @@ -544,9 +544,13 @@ Or you can achieve the same result using :ref:`pip`: pip install -e . -Note that both commands will install any dependencies declared with -"install_requires" and also any scripts declared with "console_scripts". +Note that both commands will install any dependencies declared with "install_requires" +and also any scripts declared with "console_scripts". If you do not want dependencies +installed, you can pass the ``--no-deps`` flag to setup.py: +:: + + python setup.py develop --no-deps For more information, see the `Development Mode `_ section