您的位置:首页 > 编程语言 > Go语言

ubuntu16.04安装Django

2016-08-25 20:57 253 查看
安装官方源

1),sudo apt-get update

sudo apt-get install python-django

安装djange官方源

1),sudo apt-get update

for python2

2),sudo apt-get install python-pip

sudo pip install django

for python3

2),sudo apt-get install python3-pip

sudo pip3 install django

Django basic usage

1, django-admin startproject ostechnix

2, ls ostechnix/

Sample output:

manage.py ostechnix

3, cd ostechnix/

run the following command to bootstrap the database:

python manage.py migrate

Note: If you use python 3 or earlier versions, you should use “python3 manage.py migrate” without quote

4,we need to create an administrative user.To do so, run:

python manage.py createsuperuser

Enter the username (leave blank to use the current username), password

5,run the following command to start the Django development server.

python manage.py runserver 0.0.0.0:8000

webbroser login in http://:8000
To access thee Django server’s admin page, go to http://IP-Address:8000/admin.

Enter the username and password that you have created earlier.

—–ansible yml

- name: Install pip for python2
apt: name={{ item }} state=present
with_items:
- python-pip
- name: pip Install django
pip: name=django
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: