摘要: 这里我不想采用诸如ubuntu下的apt-get install方式进行python的安装,而是在linux下采用源码包的方式进行python的安装。 一、下载python源码包 打开ubuntu下的shell终端,通过wget命令下载python源码包,如下图所示: 将python-2.7.3.t 阅读全文
posted @ 2018-05-16 11:02 old_bird 阅读(844) 评论(0) 推荐(0) 编辑
摘要: Virtaulenvwrapper Virtaulenvwrapper是virtualenv的扩展包,用于更方便管理虚拟环境,它可以做: 将所有虚拟环境整合在一个目录下 管理(新增,删除,复制)虚拟环境 快速切换虚拟环境 ... 安装方法 1、安装 virtualenvwrapper 2、创建目录存 阅读全文
posted @ 2018-05-15 15:50 old_bird 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 这个问题其实是无意中解决的:因为在网上找不到解决办法,是我在yum -y installl wget后,自动就好了,安装wget的时候,可能更新了openssl的缘故吧。 阅读全文
posted @ 2018-05-15 15:43 old_bird 阅读(14100) 评论(0) 推荐(0) 编辑
摘要: 装机员为您提供Python安装setuptools时报Compression requires the (missing) zlib的文章咨询供您阅读,如何使用Python安装setuptools时报Compression requires the (missing) zlib的方法对您有帮助也请您 阅读全文
posted @ 2018-05-15 14:29 old_bird 阅读(1625) 评论(0) 推荐(0) 编辑
摘要: 本文介绍CentOS 6.3从自带的Pyhon版本是2.6升级到2.7.6的方法。 因为CentOS系统中旧版本的Python已被深度依赖,所以不能卸载原有的Python,只能全新安装。 1.下载Pyhon,选择下载Gzipped source tar ball (2.7.6) (sig) 网址ht 阅读全文
posted @ 2018-05-15 14:09 old_bird 阅读(972) 评论(0) 推荐(0) 编辑
摘要: 1、备份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/ CentOS 5 wget -O /etc/yum 阅读全文
posted @ 2018-05-15 09:00 old_bird 阅读(8947) 评论(0) 推荐(0) 编辑
摘要: import filecmpa='d:\d1'b='d:\d2'dirobj=filecmp.dircmp(a,b)dirobj.report()dirobj.report_full_closure()dirobj.report_partial_closure()print "left_list"+ 阅读全文
posted @ 2018-05-14 14:45 old_bird 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 脚本: #!/usr/bin/python import difflibimport sysfrom python.auto.yunwei.diff1 import text1_linestry: textfile1=sys.argv[1] textfile2=sys.argv[2]except E 阅读全文
posted @ 2018-05-14 10:49 old_bird 阅读(460) 评论(0) 推荐(0) 编辑
摘要: cgi是web服务器运行web应用的一种机制,web服务器通过执行cgi脚本,然后将该程序的标准输出作为http响应的一部分 CGIHTTPServer是python标准模块的web服务器,它可以运行cgi程序 mkdir cgi-bin,待运行文件必须位于cgi-bin目录下 vim hello. 阅读全文
posted @ 2018-05-10 15:01 old_bird 阅读(3225) 评论(1) 推荐(0) 编辑
摘要: 百度搜索pycharm 然后打开pycharm的官网 然后在官网首页点击down 百度搜索pycharm 然后打开pycharm的官网 然后在官网首页点击down 如果使用的是Linux系统,那么默认已经选择Linux版本 左边的down是全功能的IDE和WEB扩展,属于商业版 右边的down是轻量 阅读全文
posted @ 2018-05-10 10:54 old_bird 阅读(1849) 评论(0) 推荐(0) 编辑