码迷,mamicode.com
首页 >  
搜索关键字:easy_install    ( 518个结果
使用Python来对MySQL数据库进行操作
使用Python对Mysql进行操作,前提是安装了python-Mysql的安装包,安装的方法有多种,可以使用easy_install或者pip 或者是源码进行安装。下面介绍下如何使用Python对Mysql进行操作,下面是一些简单的例子:(1).使用Python连接MySQL:1 import M...
分类:数据库   时间:2015-04-16 17:09:34    阅读次数:224
Python学习(六)模块 —— 第三方模块
Python 第三方模块 安装第三方模块 在Python中,安装第三方模块,是通过setuptools这个工具完成的。Python有两个封装了setuptools的包管理工具:easy_install和pip。目前官方推荐使用pip。 如果你正在使用Mac或Linux,安装pip本身这...
分类:编程语言   时间:2015-04-09 10:15:02    阅读次数:170
Python easy_install 遇到“ImportError: Entry point (‘console_scripts’, ‘easy_install’) not found”错误
Python easy_install 遇到“ImportError: Entry point (‘console_scripts’, ‘easy_install’) not found”错误...
分类:编程语言   时间:2015-04-08 23:27:23    阅读次数:243
python 包管理器 easy_install
介绍 easy_install 的安装及使用...
分类:编程语言   时间:2015-04-08 16:32:08    阅读次数:143
搭建Python独立虚拟环境
virtualenv可以搭建虚拟且独立的python环境,可以使每个项目环境与其他项目独立开来,保持环境的干净,解决包冲突问题(十分好用)。安装:virtualenv其实是Python的一个包,可以直接用easy_install或pip安装easy_install virtualenv 或 pip ...
分类:编程语言   时间:2015-04-04 12:04:23    阅读次数:147
Python包管理工具
本想写一篇关于virtualenv的博客但是用到了easy_install,所以先介绍一下,Python的包管理工具。Python的包管理工具有三个easy_install、distribute(不常用)和pip(可能是用多了easy_install,个人比较喜欢easy_install,但官方推荐...
分类:编程语言   时间:2015-04-04 11:50:13    阅读次数:124
Python包管理工具之间的关系
转自http://www.nowamagic.net/academy/part/13/302/当前的包管理工具链是 easy_install/pip + distribute/setuptools + distutils, 显得较为混乱。而将来的工具链组合非常简单:pip + distutils2。...
分类:编程语言   时间:2015-04-03 22:27:38    阅读次数:252
Linux CentOS 安装Python的easy_install工具
下载安装脚本wget-qhttp://peak.telecommunity.com/dist/ez_setup.py运行安装脚本pythonez_setup.py最好再安装可能还需要依赖的库yuminstallpython-develmysql-develzlib-developenssl-devel现在就可以安装python支持mysql的库了easy_installMySQL-python
分类:编程语言   时间:2015-04-01 20:23:45    阅读次数:184
win7 64安装easy_install
1.下载ez_setup.pyhttp://peak.telecommunity.com/dist/ez_setup.py下载到本地执行执行成会在Python的安装目录出现Script的目录。2.设置环境变量把pyhton\Scripts添加到Path环境变量。
分类:Windows程序   时间:2015-03-31 13:05:02    阅读次数:191
centos 6.5 安装easy_install和pip
easy_install和pip都是用来下载安装Python一个公共资源库PyPI的相关资源包安装easy_install下载地址:https://pypi.python.org/pypi/ez_setup解压,然后安装pythonez_setup.py安装pip可以直接easy_installpip安装或者下载安装下载地址:https://pypi.python.org/pypi/pip解压,然..
分类:其他好文   时间:2015-03-20 14:40:40    阅读次数:696
518条   上一页 1 ... 36 37 38 39 40 ... 52 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!