博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Install Django
阅读量:6498 次
发布时间:2019-06-24

本文共 3900 字,大约阅读时间需要 13 分钟。

 

=========第一次装倒是可以的==================

https://docs.djangoproject.com/en/1.10/intro/tutorial01/

http://www.aichengxu.com/view/42213

 

1.first install python

2.install Django

pip install Django==1.10.4

======
python
>>> import django
>>> print(django.get_version())
1.10.4
=====or======
python -m django --version
1.10.4
======

 

3.create a project

$ django-admin startproject mysite

//此时出现一些问题,说明还是没有安装好django,解决方法是:

建立虚拟环境,在虚拟环境下安装django,

at this point,there are some problems that django is not installed successfully,slove as follows:

1.install virtual environment
2.install django in a virtual environment

 

4.install virtualenv(creat a virtual env)
$ pip install virtualenv
$ virtualenv --version
$ virtualenv venv
$ source venv/bin/activate
$ deactivate //jump out of the virtual env

5.此时执行

pip install django
django-admin.py --help //mean the installation is successful
现在可以敲写这行命令来建一个project了:
now you can type the command line for creating a project
$ django-admin startproject mysite

 

 

=========第二次装倒是不可以的=====改进=============

https://docs.djangoproject.com/en/1.10/intro/tutorial01/

http://www.aichengxu.com/view/42213

 

1.first install python

升级python http://www.2cto.com/kf/201603/493564.html

wget https://www.python.org/ftp/python/3.4.4/Python-3.4.4.tgz

tar -zxvf Python-3.4.4.tgz

进行编译安装

cd Python-3.4.4
sudo mkdir /usr/local/python3.4.4
./configure --prefix=/usr/local/python3.4.4
make
sudo make install

#备份python旧版本信息

sudo mv /usr/bin/python /usr/bin/python2.6_old
#删除旧链接并重新创建链接
sudo rm /usr/bin/python2
sudo ln -s /usr/bin/python2.6_old /usr/bin/python2

#重新建立Python3.4的环境变量

sudo ln -s /usr/local/python3.4.4/bin/python3.4 /usr/bin/python

1.2 pip 也要跟着改变

http://www.cnblogs.com/wenchengxiaopenyou/p/5709218.html

2.install Django

sudo pip install Django==1.10.4

======

python
>>> import django
>>> print(django.get_version())
1.10.4
=====or======
python -m django --version
1.10.4
======

 

3.create a project

$ django-admin startproject mysite

//此时出现一些问题,说明还是没有安装好django,解决方法是:

建立虚拟环境,在虚拟环境下安装django,

at this point,there are some problems that django is not installed successfully,slove as follows:

1.install virtual environment
2.install django in a virtual environment

 

4.install virtualenv(creat a virtual env)
$ sudo pip install virtualenv
$ virtualenv --version
$ virtualenv venv
$ source venv/bin/activate
$ deactivate //jump out of the virtual env

5.此时执行

pip install django
django-admin.py --help //mean the installation is successful
现在可以敲写这行命令来建一个project了:
now you can type the command line for creating a project
$ django-admin startproject mysite

 

6.创建数据库

mysql -uroot -prysly
create database testDb character set utf8 collate utf8_unicode_ci;
show databases;
use testDb
show tables;

删除数据库

drop database testDb;

创建表:创建了一个只有自增id字段的username表

create table username(id int not null primary key auto_increment);

删除表

drop table username;

添加表字段

alter table username add citycode varchar(6) not null default 0;

删除表字段

ALTER TABLE username DROP citycode;

查看数据表有哪些字段

desc username;
show create table username;

修改表名称

rename table username to user;

修改表字段名称

alter table user modify new1 varchar(10);  //修改一个字段的类型
alter table user change new1 new4 int;  //修改一个字段的名称,此时一定要重新指定该字段的类型
alter table city modify city varchar(8) not null default '上海';
如果要删除一些属性: 在这里指定id的新类型为int,其他的如自增,自然是删掉了,但是主键没有删除掉。
alter table user modify id int;

设置id 自增

alter table city change id id int auto_increment;
alter table city modify id int auto_increment;

 

表插入数据

insert into city values (1, 'dd', '333ff', '', '');

表删除数据

delete from city where id=1;
delete from city where id in ('2', '3');

删除主键
alter table user modify id int; //先删除自增长
alter table user drop primary key; //再删除主键

添加主键

alter table user add primary key(id);
alter table user change id id int(10) not null auto_increment;

update user set tel=11111111111 where id=2;

select * from user;
select mail from user where id=3;

转载于:https://www.cnblogs.com/rysly/p/django.html

你可能感兴趣的文章
Unity 4.x游戏开发技巧集锦(内部资料)
查看>>
自适应网页设计
查看>>
获取BT节点信息bittorrent-discovery
查看>>
环形动画加载视图AnimatedCircleLoadingView
查看>>
Centos 7使用vsftpd搭建FTP服务器
查看>>
tcpdump抓包文件提取http附加资源
查看>>
linux下SVN不允许空白日志提交
查看>>
第2周第1课
查看>>
docker制作镜像篇(基于容器)
查看>>
山寨c 标准库中的getline 函数
查看>>
shell时间
查看>>
pfSense book之2.4安装指南
查看>>
org.springframework.data.redis 一次连接获取特定key所有k-v(pipeline)
查看>>
[译稿]同步复制提议 2010-09
查看>>
账户密码策略修改
查看>>
outlook2010 打开总是提示“正在加载配置文件”
查看>>
如何写一篇好的技术博客
查看>>
Netty - ByteBuf
查看>>
Netty - ByteBuf索引管理
查看>>
Spring Boot 2 快速教程:WebFlux 快速入门(二)
查看>>