码迷,mamicode.com
首页 >  
搜索关键字:easy_install    ( 518个结果
使用gunicorn部署python web
gunicorn 是一款支持wsgi的web服务器, 支持gevent首先安装setuptools. wgethttps://bootstrap.pypa.io/ez_setup.py$python ez_setup.py$easy_install pip$pip install gevent$pi...
分类:编程语言   时间:2014-12-05 00:28:18    阅读次数:307
Python起个web服务
首先确保你有 web模块。 import web 如果import这个失败,先安装一下。  sudo easy_install web.py 一个简单的web #!/usr/bin/python # coding=utf-8 import sys import web urls = ( '/check', 'check', '/pres...
分类:编程语言   时间:2014-12-04 20:04:26    阅读次数:227
python scrapy爬虫入门
Scrapy 是一个python下的网络爬虫工具,目前只有python2.x的版本。安装 Scrapy需要的支持库比较多,安装时挺繁琐的,测试直接用easy_install 或者 pip安装会自动下载安装需要的支持库,但是因为网络或其他种种原因总是安装失败,最好还是各个安装包分开安装。下载安装Mi....
分类:编程语言   时间:2014-12-02 20:30:18    阅读次数:204
5个Linux发行版的对比
Ubuntu Whether you are a new user planning to get your first computer, or someone migrating from Windows or Mac OS X, Ubuntu should be your first choice. It’s extremely easy to install and manage; ...
分类:系统相关   时间:2014-12-02 10:36:38    阅读次数:200
centos python2.7 easy_install pip安装
倒腾了三四个小时,尼玛 各种编 ?各种download 开始安装 首先要安装的是 zlib zlib-delve openssl ?openssl-devel?readline?readline-delve? yum install?zlib zlib-delve openssl ?openssl-devel readlin...
分类:编程语言   时间:2014-12-01 16:26:52    阅读次数:816
运维管理器Fabric
Fabric是基于Python2.5版本以上实现的SSH命令行工具,简化了SSH的应用程序部署及系统管理任务,它提供了系统基础的操作组件,可以实现本地或远程shell命令,包括命令执行,文件上传,下载及完整执行日志输出等功能。Fabric的安装Fabric支持pip,easy_install或源码方式安装,很..
分类:其他好文   时间:2014-11-28 14:33:13    阅读次数:286
Python - 升级所有已安装的第三方包
我们有时候需要把系统上已经安装的第三方的packages升级到最新版。但是easy_install和pip都没有直接的命令可以使用。 我们可以是用如下命令来查看系统上面哪些包过期了。 pip list --outdated 其实能这样列表出来后我们就可以配合其他shell命令来完成升级了。 pip ...
分类:编程语言   时间:2014-11-26 20:56:48    阅读次数:198
WIN8安装easy_install
easy_install是一个python的扩展包,主要是用来简化python安装第三方安装包,在安装了easy_install之后,安装python第三方安装包就只需要在命令行中输入:easy_install packagename,然后程序会自动搜索相...
分类:Windows程序   时间:2014-11-19 19:01:01    阅读次数:320
supervisord
1.安装supervisord #yum install python-setuptools #easy_install supervisor或#pip? install supervisor #echo_supervisord_conf > /etc/supervisord.conf 2.supervisord配置文件 在supervisord.conf最后增加:...
分类:其他好文   时间:2014-11-19 12:44:02    阅读次数:271
Python包管理工具Distribute的安装
Python包管理工具Distribute的安装Python的包管理工具常见的有easy_install,setuptools,还有pip,distribute,那麽这几个工具有什么关系呢,看一下下面这个图就明白了:可以看到distribute是setuptools的替代方案,pip是easy_install的替代方案。Distribute提供一个安装python模..
分类:编程语言   时间:2014-11-17 19:46:14    阅读次数:225
518条   上一页 1 ... 42 43 44 45 46 ... 52 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!