0% found this document useful (0 votes)
2 views1 page

Setting Up Django in Virtualenv

A virtual environment named 'virtualenvrinonment' was created and activated in a Django project directory. Django version 5.2.7 along with its dependencies was successfully installed. The project 'instagram' was then initialized using the Django admin command.

Uploaded by

Harshitha A R
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Setting Up Django in Virtualenv

A virtual environment named 'virtualenvrinonment' was created and activated in a Django project directory. Django version 5.2.7 along with its dependencies was successfully installed. The project 'instagram' was then initialized using the Django admin command.

Uploaded by

Harshitha A R
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

D:\django>python -m venv virtualenvrinonment

D:\django>virtualenvrinonment\scripts\activate

(virtualenvrinonment) D:\django>pip list


Package Version
------- -------
pip 24.3.1

(virtualenvrinonment) D:\django>pip install django


Collecting django
Using cached [Link] (4.1 kB)
Collecting asgiref>=3.8.1 (from django)
Using cached [Link] (9.3 kB)
Collecting sqlparse>=0.3.1 (from django)
Using cached [Link] (3.9 kB)
Collecting tzdata (from django)
Using cached [Link] (1.4 kB)
Using cached [Link] (8.3 MB)
Using cached [Link] (24 kB)
Using cached [Link] (44 kB)
Using cached [Link] (347 kB)
Installing collected packages: tzdata, sqlparse, asgiref, django
Successfully installed asgiref-3.10.0 django-5.2.7 sqlparse-0.5.3 tzdata-2025.2

[notice] A new release of pip is available: 24.3.1 -> 25.2


[notice] To update, run: [Link] -m pip install --upgrade pip

(virtualenvrinonment) D:\django>pip list


Package Version
-------- -------
asgiref 3.10.0
Django 5.2.7
pip 24.3.1
sqlparse 0.5.3
tzdata 2025.2

(virtualenvrinonment) D:\django>virtualenvrinonment\scripts\deactivate
D:\django>pip list
Package Version
------- -------
pip 24.3.1

D:\django>virtualenvrinonment\scripts\activate

(virtualenvrinonment) D:\django>pip list


Package Version
-------- -------
asgiref 3.10.0
Django 5.2.7
pip 24.3.1
sqlparse 0.5.3
tzdata 2025.2

(virtualenvrinonment) D:\django>django-admin startproject instagram

(virtualenvrinonment) D:\django>cd instagram

(virtualenvrinonment) D:\django\instagram>code .

You might also like