Linux serverNETWORK ADMINISTRATIONS

How to Install Django on CentOS 8 RHEL 8

How to Install Django on CentOS 8 RHEL 8
yum install python3 python3-pip
pip3 install Django
django-admin startproject mypriject
python3 manage.py migrate
python3 manage.py createsuperuser
firewall-cmd –permanent –add-port=8000/tcp
firewall-cmd –reload
python3 manage.py runserver 0.0.0.0:8000

source

centos 8

Leave a Reply

Your email address will not be published. Required fields are marked *