您的位置:首页 > 编程语言 > Python开发

install python, django, eclipse pydev plugin in windows

2012-03-08 02:08 295 查看
基本步骤参考python installation in Mac /article/8004881.html

下面只写与mac不同的步骤

install python:

下载python msi file,and then double click to install it.

安装完之后,在DOS窗口,然后进入<python home> path,执行下列命令来check是否安装成功

> python --version

> python

>>>print("hello")

>>>exit()

你可以把<python home>加入到path里。

install django:

* 下载django tar.gz file and then extract it

* 把<python home>加入到path里

* 在DOS窗口进入django解压目录,执行命令:

>python setup.py install

就会把django安装到<python home>/Lib/site-packages目录下
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: