python Win7下搭建

包括Python,eclipse,jdk,pydev,pip,setuptools,beautifulsoup,pyyaml,nltk,mysqldb的下载安装配置。

*************************************************
W

下载:
python-2.7.6.amd64.msi
http://www.python.org/
Python 2.7.6 released
Python 2.7.6 is now available.
http://www.python.org/download/releases/2.7.6/
Windows X86-64 MSI Installer (2.7.6) [1] (sig)

 

安装

配置:
我的电脑->属性->高级->环境变量->系统变量中的PATH增加:C:\Python27;

验证:
在桌面建立一个文件pt.py,内容为print 'hello python'
在cmd中输入命令python C:\Users\***\Desktop\pt.py
***为电脑用户名。

C:\Users\***>python C:\Users\***\Desktop\pt.py
hello python

C:\Users\***>

 

*************************************************
Eclipse:
eclipse-java-indigo-SR2-win32-x86_64.zip
http://www.eclipse.org/downloads/
Older Versions
http://wiki.eclipse.org/Older_Versions_Of_Eclipse
Eclipse Indigo SR2 Packages (v 3.7.2)
http://www.eclipse.org/downloads/packages/release/indigo/sr2
Eclipse IDE for Java Developers, (128 MB)
Downloaded 1,226,421 TimesDetails Windows 32-bit  64-bit 
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/indigo/SR2/eclipse-java-indigo-SR2-win32-x86_64.zip
Download eclipse-java-indigo-SR2-win32-x86_64.zip from:

 

*************************************************
jdk:
jdk-7u45-windows-x64.exe
http://www.oracle.com/technetwork/java/javase/downloads/index.html
Windows x64 125.31 MB     jdk-7u45-windows-x64.exe

http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html

 

*************************************************
pydev
为了在Eclipse中进行python工程的开发。
http://sourceforge.net/projects/pydev/files/
PyDev for EclipseLooking for the latest version? Download PyDev 3.2.0.zip (8.2 MB)
版本一直在更新中,几天前是3.1.0.zip

下载完,解压缩,将features和plugins文件夹中的内容分别复制到eclipse的features和plugins文件夹下。
重复则替换。

具体方法见windows xp,32位,环境下,Eclipse+python平台搭建
http://blog.sina.com.cn/s/blog_8af1069601019uaw.html“安装python插件”,打开eclipse先来配置preference-》PyDev-》Interpreter-Python-》New python的执行exe文件的目录

 

*************************************************
pip
https://pypi.python.org/pypi/pip
Download
pip-1.4.1.tar.gzA tool for installing and managing Python packages.
解压缩,在cmd中进入到pip-1.4.1目录,执行 python setup.py install
报错:
ImportError: No module named setuptools
所以,需要先安装setuptools

 

*************************************************
setuptools
https://pypi.python.org/pypi/setuptools/
setuptools 2.0.2
点击右侧Downloads按钮,跳至Downloads
Scroll to the very bottom of the page to find the links.
需要到页面底部去找链接下载。

File Type Py Version Uploaded on Size
setuptools-2.0.2-py2.py3-none-any.whl (md5)  Python Wheel  3.4 2013-12-29 527KB
setuptools-2.0.2.tar.gz (md5)  Source  2013-12-29 765KB
下载setuptools-2.0.2.tar.gz (md5)

解压缩
在cmd中进入到setuptools-2.0.2目录,执行 python setup.py install
成功标志:
Installed c:\python27\lib\site-packages\setuptools-2.0.2-py2.7.egg
Processing dependencies for setuptools==2.0.2
Finished processing dependencies for setuptools==2.0.2

继续安装pip

 

*************************************************
pip
在cmd中进入到pip-1.4.1目录,执行 python setup.py install
成功标记:
Installed c:\python27\lib\site-packages\pip-1.4.1-py2.7.egg
Processing dependencies for pip==1.4.1
Finished processing dependencies for pip==1.4.1

添加到系统环境变量Path:C:\Python27\Scripts;

在cmd测试,输入pip,输出:
C:\Users\***>pip

Usage:
  pip [options]

Commands:
  install                     Install packages.
  uninstall                   Uninstall packages.
  freeze                      Output installed packages in requirements format.
  list                        List installed packages.
  show                        Show information about installed packages.
  search                      Search PyPI for packages.
  wheel                       Build wheels from your requirements.
  zip                         Zip individual packages.
  unzip                       Unzip individual packages.
  bundle                      Create pybundles.
  help                        Show help for commands.

 

*************************************************
BeautifulSoup
可以利用pip进行安装:
在cmd中敲入命令查找BeautifulSoup:
C:\Users\***>pip search BeautifulSoup
BeautifulSoup             - HTML/XML parser for quick-turnaround applications
                            like screen-scraping.
pynliner                  - Python CSS-to-inline-styles conversion tool for
                            HTML using BeautifulSoup and cssutils
Detextile                 - Convert HTML to Textile syntax using
                            BeautifulSoup.
TreeSoup                  - BeautifulSoup-like wrapper around ElementTree.
beautifulscraper          - Python web-scraping library that wraps urllib2 and
                            BeautifulSoup.
ElementSoup               - ElementTree wrapper for BeautifulSoup HTML parser
beautifulsoup4            - Screen-scraping library
collective.soupstrainer   - Clean up HTML using BeautifulSoup and filter
                            rules.
在cmd中敲入命令安装BeautifulSoup
C:\Users\***>pip install BeautifulSoup
Downloading/unpacking BeautifulSoup
  Downloading BeautifulSoup-3.2.1.tar.gz
  Running setup.py egg_info for package BeautifulSoup

Installing collected packages: BeautifulSoup
  Running setup.py install for BeautifulSoup

Successfully installed BeautifulSoup
Cleaning up...
还可参见:安装Beautiful Soup
http://blog.sina.com.cn/s/blog_8af1069601019vr2.html
 

*************************************************
PyYAML 
可以利用pip进行安装
C:\Users\***>pip search pyyaml
PyYAML                    - YAML parser and emitter for Python
pyaml                     - PyYAML-based module to produce pretty and readable
                            YAML-serialized data
yamly                     - pyyaml wrapper
enhancedyaml              - It makes it more convenient to use PyYAML.

C:\Users\***>pip install PyYAML
Downloading/unpacking PyYAML
  Downloading PyYAML-3.10.tar.gz (241kB): 241kB downloaded
  Running setup.py egg_info for package PyYAML

Installing collected packages: PyYAML
  Running setup.py install for PyYAML
    checking if libyaml is compilable
    Unable to find vcvarsall.bat
    skipping build_ext

Successfully installed PyYAML
Cleaning up...

 

*************************************************
nltk
https://pypi.python.org/pypi/nltk/
nltk 2.0.4
File Type Py Version Uploaded on Size
nltk-2.0.4.tar.gz (md5)  Source  2012-11-07 933KB
nltk-2.0.4.win32.exe (md5)  MS Windows installer  2.5 2012-11-07 1MB
nltk-2.0.4.zip (md5)  Source  2012-11-07 1MB
下载nltk-2.0.4.tar.gz

解压缩,在cmd中进入到nltk-2.0.4目录,执行 python setup.py install
成功标志:
Installed c:\python27\lib\site-packages\nltk-2.0.4-py2.7.egg
Processing dependencies for nltk==2.0.4
Searching for PyYAML==3.10
Best match: PyYAML 3.10
Adding PyYAML 3.10 to easy-install.pth file
Using c:\python27\lib\site-packages
Finished processing dependencies for nltk==2.0.4

打开python Idle:
输入import nltk
输入nltk.download()
出现一个NLTK Downloader对话框,修改Download Diretory(E盘或其他盘符下)。点击all开始下载。

下载慢还可以到NLTK Corpora http://nltk.org/nltk_data/手工下载缺失的,然后放到Download Diretory,zip别删。
重装系统后nltk_data文件夹可以保留,避免重复下载。

 

*************************************************
mysqldb
http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python
MySQL-python-1.2.4.win-amd64-py2.7.exe
直接双击安装。

成功验证:
py文件:
import MySQLdb
connection = MySQLdb.connect(host="127.0.0.1",user="root",passwd="root",db="dbtest")
cursor = connection.cursor()
cursor.execute( "SELECT id,content FROM tabletest  ")
print "Rows selected:", cursor.rowcount

运行结果输出dbtest数据库中tabletest表的行数。

时间: 2024-10-31 18:28:18

python Win7下搭建的相关文章

Win7下搭建FTP服务器实现文件共享

步骤1.控制面板-程序-打开或关闭Windows功能,或者在开始菜单里搜索"打开或",弹出Windows功能窗口,勾选Internet信息服务下的FTP功能和Web管理工具,以此开启服务.点击确定后,需要等几分钟. 温馨提示:必须选中Web管理工具而且全部展开选中,否则仅仅开启FTP功能无法继续调用IIS管理器 步骤2.在控制面板-系统和安全-管理工具,或直接在开始菜单搜索"Internet信息服务(IIS)管理器". 温馨提示:只有进行了上一步打开功能的操作后,管

Win7下搭建web服务器的简单步骤

  用户们若果需要局域网内资源的共享,是要使用到Web服务器的.用户们把自己的文件.信息资料,上传到服务器实现了与大家进行资源的共享,信息还可以达到同步.同时它也是一个很好的信息共享平台,方便又实用.那么我们应该怎样在Windows7系统下搭建web服务器呢,下面大家可以跟着一起来看看具体的步骤. Win7下搭建web服务器的简单步骤: 1.打开控制面板,选择并进入"程序",双击"打开或关闭Windows服务",在弹出的窗口中选择"Internet信息服务

cygwin在win7下搭建hadoop集群环境

问题描述 江湖救急!!有人会在win7下搭建hadoop集群环境吗?我急需要搭建!cygwin安装完运行sshlocalhost出错!

win7 下搭建sublime的python开发环境的配置方法_python

Step1:安装python和sublime Step2:给sublime安装package control,安装参见: 官网 Step3:配置安装路径 方式一:配置windows的Path 好处就是cmd的时候也可以运行,视为系统,用户级别的配置: 方式二:配置sublime的python的sublime_build 点击:Preference -> Browse Packages -> 在python目录下,编辑Python.sublime-build文件,添加python应用程序的路径:

win7下搭建nginx+php的开发环境

  在win7下用的是IIS做web服务器,但近来因项目需求的原因,需要在服务器遇到404错误的时候自动做转向(不是在客户端的跳转,而是在服务器收到客户端请求去某目录下读取文件返回时,如果发现目录或目录下文件不存在,自动转到另一个服务器去取),用IIS发现很难做到这点,于是决定搭建nginx的开发环境,通过配置实现这一点. 首先,google nginx和php,分别到他们的官网把最新版本的下载回来,我当时下的PHP是5.4.3的版本,nginx是1.5.2,我把他们都放在D盘下一个叫webse

简单介绍win7下搭建apache+php+mysql开发环境_php技巧

环境目录:E:\dev​ 一.Apache 下载地址:http://www.apachelounge.com/download/​ 我们下载VC11运行库的 1.安装说明: 运行apache安装程序,方法非常简单,弹安装界面后一直"next" 接着会出现一个界面,需要填写3个内容,分别为:Network Domain.Server Name.Administrator's Email Address 随便填写就好,不影响内容. 在下面还有2个选项,默认选择为80端口,第二个为8080端

win7下搭建cocos2d-x环境

折腾了大半天,终于可以玩cocos2d-x了. 先说步骤(相当简单): 一.准备好你的vs2010或2012 二.下载cocos2d-x,网址http://cocos2d.cocoachina.com/download,请下载稳定版,我用的是cocos2d-2.1rc0-x-2.1.2-hotfix.zip @ Apr.08, 2013. 三.把下载好的cocos2d-x包放到电脑任意位置,解压,你会发现,解压出一两个文件夹,一个"cocos2d-2.1rc0-x-2.1.2",一个&

win7下搭建nginx+php的开发环境_win服务器

一.下载相关软件 nginx下载:http://nginx.org/en/download.html nginx常见异常:http://feiger.cn/?p=2719 php下载:http://windows.php.net/download#php-7.0 下载RunHiddenConsole:http://www.xdowns.com/soft/1/71/2012/Soft_89261.html 二.配置 nginx.conf文件,我的编辑结果如下所示,具体配置过程中需要注意什么请看注释

windows7下搭建hadoop集群环境

问题描述 有人会在win7下搭建hadoop集群环境吗?我急需要搭建,有会的帮帮忙吧,我整了两天了没弄出来,着急死了!cygwin安装完运行sshlocalhost出现这种错误,是怎么回事啊? 解决方案 解决方案二:我是真心不会,帮顶吧,有份资料可以参考下,去搜"王家林hadoop".解决方案三:楼上的问题解决了吗?我跟你遇到了完全相同的问题~跪求答案