Steps to Install Python on ubuntu 20.04 LTS With Examples

Python is a free & open source high-level object-oriented programming language. Its simplicity and easy-to-learn syntax. Using Python, we can build all types of applications, software, automate tasks, and conduct data analysis. There are few steps to install Python on ubuntu: Step 1: Update the System. apt-get update Step 2: Install the software & add …

How to Install and Deploy python django application using Nginx and Postgres in Ubuntu

Prerequisites : 1- Postgres database 2- Nginx 3- Gunicorn Step 1: After installed Python 3.6 and upgraded the pip version with the following command. sudo -H pip3 install –upgrade pip   Step 2: Install and create a python environment with the name of env inside a workstation folder. cd /opt/workstation sudo -H pip install virtualenv python3.6 …

Install python 3.6 in Ubuntu

Introduction: In this blog we will learn how to download and install the python 3.6 in the linux based on ubuntu. We will install the virtual environment and how to create an virtual environment of python 3.6 and also learn how to upgrade the pip. Step 1: First update and upgrade the system. sudo apt get update sudo …

How to deploy Python framework application using uwsgi in Ubuntu 18.04

  Introduction  In this blog we learn to deploy a python based frameworks deployment on ubuntu 18.04 server and how to setup nginx and uwsgi application on the server. We will launch the application and configure the front-end of nginx server and back-end for the uwsgi. Prerequisites Lets started the blog you have to setup some …