Django (Day 1)



Open PyCharm 

Go to left side top corner 4 dashes

Select New Project 

Open Terminal 

Check Python Version: python --version (3.14 Must)

Install Django: pip install Django

Check Django version: django-admin --version (or) python -m Django --version


Go to GitHub 

Create a new repository

Come to PyCharm

In the Top Corner hover on the folder name 

Select  Clone Repository and select the new created repository


Now create a New Django Project: django-admin startproject django_project .

If you see manage.py file created you are successful


Create a New App in the Project: python manage.py startapp test_app (Ensure you are in the main folder)


# For Getting In: Cd Folder Name

# FOr Exiting: Cd .


Now Run Server: python manage.py runserver

If You see a Rocket It is Succuessfull 


Else: COntact Hemanth Sir 



-- The End --


Comments

Popular posts from this blog

Django (Day 2)

Django (Day 3)