From 43d389968e15bd426ce343fc880325339d8c3405 Mon Sep 17 00:00:00 2001 From: chao liu Date: Sat, 26 Aug 2017 20:10:15 -0700 Subject: [PATCH] =?UTF-8?q?writing=20convention:=20do=20not=20use=20?= =?UTF-8?q?=E2=80=9C-y=E2=80=9D=20for=20package=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refer to: https://docs.openstack.org/contributor-guide/writing-style/ \ code-conventions.html Change-Id: I2b59c5ff02d38c2e15e728feadd123aaa6137ff0 --- doc/source/contributor/dev.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/contributor/dev.rst b/doc/source/contributor/dev.rst index 97b73737c..973a6b81e 100644 --- a/doc/source/contributor/dev.rst +++ b/doc/source/contributor/dev.rst @@ -22,20 +22,20 @@ Installing system dependencies .. code-block:: bash # Install development tools - sudo apt-get install -y git python-tox + sudo apt-get install git python-tox # Install dependency build requirements - sudo apt-get install -y libffi-dev libssl-dev python-dev gcc + sudo apt-get install libffi-dev libssl-dev python-dev gcc **Fedora 23:** .. code-block:: bash # Install development tools - sudo dnf install -y git python-tox + sudo dnf install git python-tox # Install dependency build requirements - sudo dnf install -y gcc libffi-devel openssl-devel redhat-rpm-config + sudo dnf install gcc libffi-devel openssl-devel redhat-rpm-config Setting up a virtual environment --------------------------------