How to install and start E-commerce service in Open edX navetive installations (Ubuntu 16.04)
 Assumptions:   You are installing this on an AWS instance of Ubuntu 12.04, 64-bit  You have at least 30GB of space assigned to the root drive  These instructions are as current as of the Fiscus.3 platform release   1. Update and install system dependencies   sudo apt-get update -y   sudo apt-get install -y build-essential software-properties-common python-software-properties curl git-core libxml2-dev libxslt1-dev libfreetype6-dev python-pip python-apt python-dev libxmlsec1-dev swig libmysqlclient-dev   sudo pip install --upgrade pip   sudo pip install --upgrade virtualenv   2. Clone the edx configuration repository and install edX and ecommerce   cd /var/tmp   git clone https://github.com/edx/configuration   cd /var/tmp/configuration   sudo pip install -r requirements.txt   sudo pip install setuptools --upgrade   cd /var/tmp/configuration/playbooks   nano -w edx_sandbox.yml   * Inside the edx_sandbox.yml file, change the SANDBOX_ENABLE_ECOMMERCE flag from False to True.   sudo ansible...