2024年3月6日发(作者:麴丹丹)
Web、Java、Python、NoSQL、Hadoop、Openstack、Linux、关系型数据库、云计算、大数据...
积跬步以至千里
跳至正文
首页
关于
知识共享
找吴飚
你的吐槽板
你的电台
← Linux下搭建Python2.7环境
Python爬虫抓取代理服务器 →
Windows下搭建Python2.7环境(包括Win7 64位下安装setuptools)
发表于 2013 年 4 月 11 日 由 吴飚
在Windows下要比Linux简单的多。
Linux系统参考:Linux下Python2.7环境搭建
/?mod=viewthread&tid=36405&fromuid=4771
或则直接在本站搜索
系统环境
操作系统 Windows 7 旗舰版 64位 SP1 (DirectX 11 )
处理器 英特尔 Core i5 M560 @ 2.67GHz 双核笔记本处理器
主板 联想 2522NT7 (英特尔 QM57 芯片组)
内存 6 GB ( 尔必达 DDR31067MHz / 尔必达 DDR3 1333MHz )
目录[+]
1.下载
Python:
地址:/getit/
版本:
setuptools:/pypi/setuptools#windows
ez_文件:/dist/ez_
numpy:
地址:/~gohlke/pythonlibs/
版本:
2.安装Python
选择安装路径:
除了选择安装路径外,其他的基本都可以默认了,一直到安装完成。此时的目录结构如下:
3.为Python配置环境变量
测试,Python安装成功。
4.安装setuptools
官网声称.exe版本的不支持64位Windows系统,推荐使用ez_自动安装。据说,有筒子32位的exe文件在64位系统上也能用,我就不试了,按照官方的指导来吧,免得以后出些莫名其妙的问题。
打开/dist/ez_,把页面上的代码copy一份保存为ez_。
在命令行窗口下执行即可,前提是可以联网。
1
D:>ez_
2
Downloading
/packages/2.7/s/setuptools/
Processing
3
4
Copying to
d:python27libsite-packages
5
Adding setuptools 0.6c11 to
file
6
Installing easy_ script to
D:Python27Scripts
7
Installing easy_ script to
D:Python27Scripts
8
Installing easy_st script to
D:Python27Scripts
9
Installing easy_ script to
D:Python27Scripts
10
Installing easy_ script to
D:Python27Scripts
11
Installing easy_st script to
D:Python27Scripts
12
13
Installed
d:
14
Processing dependencies for
setuptools==0.6c11
15
Finished processing dependencies for
setuptools==0.6c11
setuptools安装完成后的目录如下:
5.为setuptools配置环境变量
6.使用easy_install
安装django:
查看源代码
打印帮助
1
C:UsersBiao>easy_install
2
error: No urls, filenames, or requirements specified (see
--help)
3
4
C:UsersBiao>easy_install
django
5
Searching
for
django
6
Reading
/simple/django/
7
Reading
/
8
Reading
/m/
9
Best match:
Django 1.4.2
10
Downloading
/m/releases/1.4/
11
Processing
12
Running -q bdist_egg --dist-dir
c:usersbiaoappdatalocaltempeasy_install-tahhsuDjango-1.4.2egg-dist-tmp-0hpiac
13
zip_safe flag not set; analyzing archive
14
: module references
__file__
15
t_processors: module references
__file__
16
: module references
__file__
17
: module references
__file__
18
: module references
__file__
19
ware: module references
__file__
20
tetags: module references
__file__
21
: module references
__file__
22
.__init__: module references
__file__
23
: module references
__file__
24
: module references
__file__
25
_data: module references
__file__
26
: module references
__file__
27
: module references
__file__
28
: module references
__file__
29
: module references
__file__
30
e: module references
__file__
31
: module references
__file__
32
tes: module references
__path__
33
ment.__init__: module references
__file__
34
ment.__init__: module references
__path__
35
ta: module references
__file__
36
ta: module references
__path__
37
ssages: module references
__file__
38
tp: module references
__path__
39
: module references
__file__
40
g: module references
__file__
41
_directories: module references
__file__
42
._doctest: module references
__file__
43
._doctest: module MAY be using
rcefile
44
load: module references
__file__
45
_loading: module references
__path__
46
n: module references
__path__
47
_real: module references
__file__
48
ation.__init__: module references
__file__
49
tor: module references
__file__
50
: module references
__file__
51
.i18n: module references
__file__
52
Adding django 1.4.2
to
file
53
Installing script to
D:Python27Scripts
54
55
Installed
d:
56
Processing dependencies
for
django
57
Finished processing dependencies
for
django
58
59
C:UsersBiao>python
60
Python 2.7.3
(default, Apr 10
2012, 23:24:47) [MSC v.1500
64
bit (AMD64)] on
win32
61
Type "help", "copyright", "credits"
or "license"
for
more
information.
>>>
62
import
django
63
>>>
exit()
django已安装成功。
安装numpy:
1
C:UsersBiao>easy_install
numpy
2
Searching
for
numpy
3
Reading
/simple/numpy/
4
Reading
5
Reading
/project/?group_id=1369&package_id=175103
6
Reading
7
Best match:
numpy 1.6.2
8
Downloading
/packages/source/n/numpy/#md5=7e13c931985f90efcfa0408f849
error: MD5 validation failed for
; possible download
problem?
10
11
C:UsersBiao>
easy-install方式安装失败,这是因为我公司限网了,下载不下了。改用exe文件安装,安装文件为: 。下载完成后直接运行就可以了:
默认会找到Python的安装路径:
numpy安装成功。
至此,在Windows下Python环境搭建完成。
本站遵循 : 署名-非商业性使用-相同方式共享 3.0 中国大陆 (CC BY-NC-SA 3.0
CN)
版权声明 : 本站所有文章如未标注为转载则皆为原创,如需转载,请务必以超链接形式标注文章原始出处及作者姓名!
此条目发表在 Python 分类目录,贴了 Python环境搭建 标签。将固定链接加入收藏夹。
← Linux下搭建Python2.7环境
Python爬虫抓取代理服务器 →
发表评论
电子邮件地址不会被公开。 必填项已用 * 标注
姓名 *
电子邮件 *
站点
评论
您可以使用这些 HTML 标签和属性:
发表评论
搜索
分类目录
CAP理论
Hadoop
Hbase
Hive
Sqoop
Java
JavaScript
Linux
MySQL
NoSQL
Memcached
Repcached
MongoDB
Redis
Oracle
Python
Thrift
随笔
近期文章
Tomcat DBCP 连接池泄露
Tomcat监控工具psi-probe
Jquery datatable 分页
忙着……
面向大规模集群部署Hadoop的思路
近期评论
吴飚 发表在《面向大规模集群部署Hadoop的思路》
吴飚 发表在《你的吐槽板》
吴飚 发表在《你的吐槽板》
NBA Jerseys Outlet 发表在《图示Oracle数据库更新数据并提交的完整过程》
不了峰 发表在《图示Oracle数据库更新数据并提交的完整过程》
功能
登录
文章 RSS
评论 RSS
友情链接
Luocs
Leonarding
开新浪微博只为关注凤姐
Copyright © 2013 . All Rights Reserved. 粤ICP备13021071号
2024年3月6日发(作者:麴丹丹)
Web、Java、Python、NoSQL、Hadoop、Openstack、Linux、关系型数据库、云计算、大数据...
积跬步以至千里
跳至正文
首页
关于
知识共享
找吴飚
你的吐槽板
你的电台
← Linux下搭建Python2.7环境
Python爬虫抓取代理服务器 →
Windows下搭建Python2.7环境(包括Win7 64位下安装setuptools)
发表于 2013 年 4 月 11 日 由 吴飚
在Windows下要比Linux简单的多。
Linux系统参考:Linux下Python2.7环境搭建
/?mod=viewthread&tid=36405&fromuid=4771
或则直接在本站搜索
系统环境
操作系统 Windows 7 旗舰版 64位 SP1 (DirectX 11 )
处理器 英特尔 Core i5 M560 @ 2.67GHz 双核笔记本处理器
主板 联想 2522NT7 (英特尔 QM57 芯片组)
内存 6 GB ( 尔必达 DDR31067MHz / 尔必达 DDR3 1333MHz )
目录[+]
1.下载
Python:
地址:/getit/
版本:
setuptools:/pypi/setuptools#windows
ez_文件:/dist/ez_
numpy:
地址:/~gohlke/pythonlibs/
版本:
2.安装Python
选择安装路径:
除了选择安装路径外,其他的基本都可以默认了,一直到安装完成。此时的目录结构如下:
3.为Python配置环境变量
测试,Python安装成功。
4.安装setuptools
官网声称.exe版本的不支持64位Windows系统,推荐使用ez_自动安装。据说,有筒子32位的exe文件在64位系统上也能用,我就不试了,按照官方的指导来吧,免得以后出些莫名其妙的问题。
打开/dist/ez_,把页面上的代码copy一份保存为ez_。
在命令行窗口下执行即可,前提是可以联网。
1
D:>ez_
2
Downloading
/packages/2.7/s/setuptools/
Processing
3
4
Copying to
d:python27libsite-packages
5
Adding setuptools 0.6c11 to
file
6
Installing easy_ script to
D:Python27Scripts
7
Installing easy_ script to
D:Python27Scripts
8
Installing easy_st script to
D:Python27Scripts
9
Installing easy_ script to
D:Python27Scripts
10
Installing easy_ script to
D:Python27Scripts
11
Installing easy_st script to
D:Python27Scripts
12
13
Installed
d:
14
Processing dependencies for
setuptools==0.6c11
15
Finished processing dependencies for
setuptools==0.6c11
setuptools安装完成后的目录如下:
5.为setuptools配置环境变量
6.使用easy_install
安装django:
查看源代码
打印帮助
1
C:UsersBiao>easy_install
2
error: No urls, filenames, or requirements specified (see
--help)
3
4
C:UsersBiao>easy_install
django
5
Searching
for
django
6
Reading
/simple/django/
7
Reading
/
8
Reading
/m/
9
Best match:
Django 1.4.2
10
Downloading
/m/releases/1.4/
11
Processing
12
Running -q bdist_egg --dist-dir
c:usersbiaoappdatalocaltempeasy_install-tahhsuDjango-1.4.2egg-dist-tmp-0hpiac
13
zip_safe flag not set; analyzing archive
14
: module references
__file__
15
t_processors: module references
__file__
16
: module references
__file__
17
: module references
__file__
18
: module references
__file__
19
ware: module references
__file__
20
tetags: module references
__file__
21
: module references
__file__
22
.__init__: module references
__file__
23
: module references
__file__
24
: module references
__file__
25
_data: module references
__file__
26
: module references
__file__
27
: module references
__file__
28
: module references
__file__
29
: module references
__file__
30
e: module references
__file__
31
: module references
__file__
32
tes: module references
__path__
33
ment.__init__: module references
__file__
34
ment.__init__: module references
__path__
35
ta: module references
__file__
36
ta: module references
__path__
37
ssages: module references
__file__
38
tp: module references
__path__
39
: module references
__file__
40
g: module references
__file__
41
_directories: module references
__file__
42
._doctest: module references
__file__
43
._doctest: module MAY be using
rcefile
44
load: module references
__file__
45
_loading: module references
__path__
46
n: module references
__path__
47
_real: module references
__file__
48
ation.__init__: module references
__file__
49
tor: module references
__file__
50
: module references
__file__
51
.i18n: module references
__file__
52
Adding django 1.4.2
to
file
53
Installing script to
D:Python27Scripts
54
55
Installed
d:
56
Processing dependencies
for
django
57
Finished processing dependencies
for
django
58
59
C:UsersBiao>python
60
Python 2.7.3
(default, Apr 10
2012, 23:24:47) [MSC v.1500
64
bit (AMD64)] on
win32
61
Type "help", "copyright", "credits"
or "license"
for
more
information.
>>>
62
import
django
63
>>>
exit()
django已安装成功。
安装numpy:
1
C:UsersBiao>easy_install
numpy
2
Searching
for
numpy
3
Reading
/simple/numpy/
4
Reading
5
Reading
/project/?group_id=1369&package_id=175103
6
Reading
7
Best match:
numpy 1.6.2
8
Downloading
/packages/source/n/numpy/#md5=7e13c931985f90efcfa0408f849
error: MD5 validation failed for
; possible download
problem?
10
11
C:UsersBiao>
easy-install方式安装失败,这是因为我公司限网了,下载不下了。改用exe文件安装,安装文件为: 。下载完成后直接运行就可以了:
默认会找到Python的安装路径:
numpy安装成功。
至此,在Windows下Python环境搭建完成。
本站遵循 : 署名-非商业性使用-相同方式共享 3.0 中国大陆 (CC BY-NC-SA 3.0
CN)
版权声明 : 本站所有文章如未标注为转载则皆为原创,如需转载,请务必以超链接形式标注文章原始出处及作者姓名!
此条目发表在 Python 分类目录,贴了 Python环境搭建 标签。将固定链接加入收藏夹。
← Linux下搭建Python2.7环境
Python爬虫抓取代理服务器 →
发表评论
电子邮件地址不会被公开。 必填项已用 * 标注
姓名 *
电子邮件 *
站点
评论
您可以使用这些 HTML 标签和属性:
发表评论
搜索
分类目录
CAP理论
Hadoop
Hbase
Hive
Sqoop
Java
JavaScript
Linux
MySQL
NoSQL
Memcached
Repcached
MongoDB
Redis
Oracle
Python
Thrift
随笔
近期文章
Tomcat DBCP 连接池泄露
Tomcat监控工具psi-probe
Jquery datatable 分页
忙着……
面向大规模集群部署Hadoop的思路
近期评论
吴飚 发表在《面向大规模集群部署Hadoop的思路》
吴飚 发表在《你的吐槽板》
吴飚 发表在《你的吐槽板》
NBA Jerseys Outlet 发表在《图示Oracle数据库更新数据并提交的完整过程》
不了峰 发表在《图示Oracle数据库更新数据并提交的完整过程》
功能
登录
文章 RSS
评论 RSS
友情链接
Luocs
Leonarding
开新浪微博只为关注凤姐
Copyright © 2013 . All Rights Reserved. 粤ICP备13021071号