How to install and set up Django web framework on Android in under 10 minutes

Опубликовано: 01 Март 2026
на канале: AI Age
277
11

How to install Django on an Android device📱
Thanks for watching, please ensure you like👍 share , subscribe and click on the bell icon🔔
Steps...

1. Install termux

2. Install python on Android (apt install
python)
3. Install virtualenv. (pip install virtualenv)
4. Make a new directory and go into it(mkdir
django-app && cd django-app )
5. Start the virtual environment (python3 -m
venv venv)
6. Activate the virtual environment (source
venv/bin/activate
7. Install Django ( pip install Django)
8. Start a new project (django-admin
startproject mydjangoapp)
9. Go into the app directory (cd
mydjangoapp )
10.create a new Django app (python
manage.py startapp myapp)
11. run migrations (python manage.py
migrate)
12. python manage.py runserver
13. Go to your browser and type 127.0.0.1:8000
Done!!!!