博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mac安装django1.5.4
阅读量:6456 次
发布时间:2019-06-23

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

 

1.下载安装程序

打开终端输入以下命令

$ wget http://www.djangoproject.com/m/releases/1.5/Django-1.5.4.tar.gz

 

2.把刚下载的包解压缩

$ tar zxvf Django-1.5.4.tar.gz

 

3.打开解压文件,安装

$ cd Django-1.5.4

$ python setup.py install

 

4. 测试一下安装的django的

$ python

这样就进入了python环境

$ import django

$ django.VERSION

 

详细的操作过程如下:

angela@angeladeMacBook-Air:/workspace$python

Python 2.7.5 (default, Aug 25 2013, 00:04:04)

[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin

Type "help", "copyright", "credits" or "license" for more information.

>>> import django

>>> django.VERSION

(1, 5, 4, 'final', 0)

转载于:https://www.cnblogs.com/iwangzheng/p/3723685.html

你可能感兴趣的文章
Exceptions: Database Exceptions (MSDN)
查看>>
prettytable模块(格式化打印内容)
查看>>
淘宝一月上钻是这样操作的
查看>>
Debugging Failed Because Integrated windows authentication is not enabled
查看>>
hdu-1541-Stars (树状数组)
查看>>
ASP.NET中的Request、Response、Server对象
查看>>
【Foreign】不等式 [数论]
查看>>
【Foreign】Game [博弈论][DP]
查看>>
【AtCoder Grand Contest 007E】Shik and Travel [Dfs][二分答案]
查看>>
python中文问题汇总
查看>>
jQuery基础学习
查看>>
[数据结构]Java 基于链表和泛型的栈结构
查看>>
如何搞定SVN目录的cleanup问题和lock问题
查看>>
MFC 堆栈溢出 test dword ptr [eax],eax ; probe page.
查看>>
作业调度框架 Quartz.NET 2.0 StepByStep
查看>>
mysqldump 导出失败:Can't create/write to file (Errcode: 13) when executing 'SELECT INTO OUTFILE'
查看>>
【转】简述TCP的三次握手过程
查看>>
react-redux 和 redux-saga 小结
查看>>
跨域问题
查看>>
SQLite3 API编程手册
查看>>