From bb38e34fc5f8f4fa4abd33cdc2ff6d0569a1adb6 Mon Sep 17 00:00:00 2001 From: gaellick <32159476+gaellick@users.noreply.github.com> Date: Mon, 27 Nov 2017 20:58:13 +0100 Subject: [PATCH] add prequisites for ubuntu dev env (#30713) --- .../rst/dev_guide/developing_modules_general.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/docsite/rst/dev_guide/developing_modules_general.rst b/docs/docsite/rst/dev_guide/developing_modules_general.rst index 0670a61aa85..8809f7c0537 100644 --- a/docs/docsite/rst/dev_guide/developing_modules_general.rst +++ b/docs/docsite/rst/dev_guide/developing_modules_general.rst @@ -23,7 +23,17 @@ What's covered in this section: Environment setup ================= +Prerequisites Via Apt (Ubuntu) +`````````````````````````````` +Due to dependencies (for example ansible -> paramiko -> pynacl -> libffi): +.. code:: bash + + sudo apt update + sudo apt install build-essential libssl-dev libffi-dev python-dev + +Common Environment setup +```````````````````````` 1. Clone the Ansible repository: ``$ git clone https://github.com/ansible/ansible.git`` 2. Change directory into the repository root dir: ``$ cd ansible``