Find by Category

Install Django 4.x on OpenSuse

On opensuse, you already have python3.x, pip, and venv installed, now just need to create a python virtual environment, activate it and then install python django the latest version then start creating django products and apps. Check Python and pip versions Create Python Virtual ENV and activate it To create python virtual environment and activate, … Read more

Django 3 Tutorial: Build a Blogging App

This post will explain how Django 3 works and we’ll create a blogging app in the process. I assume that you already have installed Python 3, Python Virtualenv, and latest version of Django and pillow package as well. Related Post: How to install Django 3 on Ubutnu In case you have not installed yet. I … Read more

How to Deploy Python Django App on cPanel – Shared Hosting

In this tutorial, I am going to walk you through how to deploy Python Django web app on a shared cPanel web hosting plan. I am using Namecheap shared hosting plan but I would recommend using inMotion which support latest Python 3 and Django version. If you need full root access the server, which you … Read more

How to Install Django 3 on Windows 10

How to install Django 3 on Windows 10 tutorial. If you have Windows 7/8/8.1, you should not have any issue installing Django 3 on your system. Download & Install Python 3.7 w/ pip Just copy and paste this following link in your preferred internet browser tab and hit Enter. Now let it be downloaded, once … Read more

Django: Upload and Display Images

Go ahead and add the below code to your #setting.py This should work in Django 1.8, 2.2, and 3.01 as well Import these packages in root #urls.py Add this line of code to root #urls.py Finally, add this line of code to the #list.html Django – Display Images Hope, this is going to work for … Read more

How to install Django 2.1.7 on Ubuntu 18.04

In order to install Django on any operating system, we need to already have python and pip installed. If you have not, please install python3 and pip3 on Ubuntu. Now, I assume that you already have python and pip installed on your Ubutnu 18.04. Let’s install Django 2.1.7 which is the latest version at the … Read more

How to install Django 2.1.7 on Windows 10

How to install django 2 on windows 10/8/7. So, in order to install Django 2 , you need to have python installed already on your operating system. Download & Install Python Follow this python download link to download & install the latest version of python on your windows 10/8/7 operating system. Verify python & pip … Read more

How to Install Django on Windows 10, 8, 7

How to Install Django on Windows 10, 8, 7Install Python version 3.6.2, pip version 9.0.1, and Django version 1.15.5 Links… Python Releases for Windowshttps://www.python.org/downloads/windows/ Writing your first Django apphttps://docs.djangoproject.com/en/1.11/intro/tutorial01/ How to install Django on Windowshttps://docs.djangoproject.com/en/1.11/howto/windows/ Django “How to” Guideshttps://docs.djangoproject.com/en/1.11/howto/ Watch me install Django https://youtu.be/MEcWRk9w0t0 Related Posts… Learn Django 3 by Building a Blogging App