Merge pull request #13781 from s0undt3ch/hotfix/setup-raet

pip requirements clarification
This commit is contained in:
Thomas S Hatch 2014-06-26 19:54:14 -06:00
commit 55dfe95d19
2 changed files with 18 additions and 2 deletions

View File

@ -162,12 +162,19 @@ Activate the virtualenv::
source /path/to/your/virtualenv/bin/activate
Install Salt (and dependencies) into the virtualenv::
Install Salt (and dependencies) into the virtualenv.
pip install -r requirements.txt
ZeroMQ Transport:
.. code-block:: bash
pip install -r zeromq-requirements.txt
pip install psutil
pip install -e .
.. note:: Installing M2Crypto
.. note:: Installing M2Crypto
You may need ``swig`` and ``libssl-dev`` to build M2Crypto. If you
@ -177,6 +184,15 @@ Install Salt (and dependencies) into the virtualenv::
env SWIG_FEATURES="-cpperraswarn -includeall -D__`uname -m`__ -I/usr/include/openssl" pip install M2Crypto
RAET Transport:
.. code-block:: bash
pip install -r raet-requirements.txt
pip install psutil
pip install -e .
Running a self-contained development version
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File