Web Application Setup - Install Software

webapp server python

Install Software

  1. Install Python 3

    Good news, python 3 is already install on Ubuntu 17.10.

  2. Install other top level software packages:

    You may need to run ubuntu upgrade before insalling:

    ... sudo apt-get update
    ... sudo apt-get upgrade
    

    Install the following packages:

    ... sudo apt-get install python3.7
    ... sudo apt-get install python3.7-venv
    ... sudo apt-get install python3-pip
    ... sudo apt-get install uwsgi-core
    ... sudo apt-get install uwsgi-plugin-python3
    ... sudo apt-get install nginx
    

    All other python packages will be installed in the applications virtual environment.