Posts

Showing posts with the label Django

Setting up a Virtual Development Environment for Django3

Image
Goal: A Professional Quality Development Environment If you already have Django 3.x installed in your system, then you can skip this post but if it's not, then don't worry we will get everything up and running in the next few minutes. To install django, you need to have Python 3.x running in your System. To install python in your system, you can check official website of python To confirm whether you have python installed in your system or not, just type python in your shell and you should see the shell of python3.8.x Creating an isolated Python environment After you have Python3.x running in your system, We will now create a virtual environment which won't have anything installed except the python and we will use this to work on our django projects. Using virtual environments helps us to separate different package versions for different projects. Also if you are in multi user OS, then you won't need any permissions to install anything and work on your project. ...

Introduction to Creating Web Apps by using Python-Django Framework

Image
About the Author Hello Everyone! Welcome to the Django Series of Website Development on The Coding Cloud . My Name is Pawan Kumar and I am Pursuing B.Tech in Computer Science Engineering at Baba Farid College of Engineering and Technology. I have 1 Year Experience Working with Django and I have Worked on Several Projects. The Main Motive behind Starting this Series is to help You All Learn Django and Improve My Skills as I Will also have to Discover More for You People to Learn, as they say Learning by Teaching. This Series will be a Project based Learning because even I get bored of Only Theory as Hands on Practice Matters the Most. So, I Will be Your Instructor throughout the Series and If You have any Query, Suggestion, Feedback or You Feel any Scope of Improvement, You can Comment below and I Would Love to hear from You All. What is Django Django is a Powerful Python Web Framework which is Easy to Learn and handles most of the things Like Security, Backend all by itself withou...