Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test16604225

利用freeze在linux环境下制作python脚本的可执行程

10 2月01 1月 by test16604225

1.安装python2.5.1 2.locate freeze 找到freeze.py所在的目录,假设是 /r […]

Continue reading
Posted in 未分类 · Leave a comment

redhatenterpriselinux5下搭建lamp(python)全过程分享(fordjango)

10 2月01 1月 by test16604225

os:redhat enterprise linux 5 在安装的过程中遇到不少困难,所以记下来,好让后面的人 […]

Continue reading
Posted in 未分类 · Leave a comment

python下科学计算包numpy和scipy的安装

10 2月01 1月 by test16604225

python下大多数工具包的安装都很简单,只需要执行 “python setup.py insta […]

Continue reading
Posted in 未分类 · Leave a comment

python实现linux下面按名字kill掉进程

10 2月01 1月 by test16604225

linux下面按进程的命令名字kill掉进程稍稍有点麻烦,就用python写了一个简单的小工具,不过目前这个工 […]

Continue reading
Posted in 未分类 · Leave a comment

termcolor

10 2月01 1月 by test16604225

终端打印的消息可以是彩色的,不过着色的语法确实诡异了一些,也不好阅读。 termcolor 是个 python […]

Continue reading
Posted in 未分类 · Leave a comment

fedora14下配置python开发环境

10 2月10 11月 by test16604225

先装python,由于fedora 14系统已有python,将python安装至home目录下; 修改hom […]

Continue reading
Posted in Python · Leave a comment

ubuntu安装nautiluspython扩展(nautiluspyextensions)

10 2月10 11月 by test16604225

nautilus python扩展包括很多有用的功能:1.open-terminal-geometry.py […]

Continue reading
Posted in Python · Leave a comment

dreamhost上编译python并安装django

10 2月01 1月 by test16604225

python 2.5安装步骤: wget http://www.python.org/ftp/python/2 […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu下使用eclipse和pydev搭建完美python开发环境

10 2月10 11月 by test16604225

在windows下成功地搭好了一个python开发环境,这次转战ubuntu有了前面的经验,相对轻松多了 还发 […]

Continue reading
Posted in Python · Leave a comment

ubuntu11.04下安装mongodb和python驱动

10 2月10 11月 by test16604225

首先说明一下,我的系统是ubuntu 11.04,64位系统,以下安装可能需要自己根据系统状况修改。 1.下载 […]

Continue reading
Posted in Python · Leave a comment

记录下debian配置fastcgi+python的过程

10 2月10 11月 by test16604225

先安装 fastcgi先 apt-get install libapach2-mod-fcgid 如果需要支持 […]

Continue reading
Posted in Python · Leave a comment

fedora17安装python和eclipse简单方法

10 2月10 11月 by test16604225

在fedora 17下,如果没有安装eclipse,则在终端安装,命令为: yum install eclip […]

Continue reading
Posted in Python · Leave a comment

python导入libxml2.so.2出错的解决方案

10 2月10 11月 by test16604225

有个别朋友遇到这样的问题,尤其是使用fedora的人们,升级过程中出现错误,提示下面的信息: upgradin […]

Continue reading
Posted in Python · Leave a comment

fedora20下django1.6+python3使用mysql

10 2月10 11月 by test16604225

折腾了整整一个下午,研究了关于fedora 20 下django1.6+python3 使用mysql,记录一 […]

Continue reading
Posted in Python · Leave a comment

fedora环境python访问mysql安装mysqldb

10 2月10 11月 by test16604225

本人是fedora下的,如果是其他的只是在命令行上略有区别而已。 1、安装数据库驱动适配器 http://so […]

Continue reading
Posted in Python · Leave a comment

fedora16安装vim以及整合部分插件(forpython)

10 2月10 11月 by test16604225

在fedora上面使用(更新)vim以及整合部分插件(for python), 笔记如下:0.提前准备:0.1 […]

Continue reading
Posted in Python · Leave a comment

python3对dns负载均衡环境下的web服务器的监控脚本

10 2月10 11月 by test16604225

很多大型网站为了减轻压力,避免单点故障,使用了多个服务器(ip)地址来为单一网站提供服务。 其中包括使用dns […]

Continue reading
Posted in Python · Leave a comment

用python建立最简单的web服务器

10 2月10 11月 by test16604225

利用python自带的包可以建立简单的web服务器。在dos里cd到准备做服务器根目录的路径下,输入命令: p […]

Continue reading
Posted in Python · Leave a comment

pythonubuntu下的ide选择

10 2月10 11月 by test16604225

1.wingide,专业的python开发工具,可以断言就目前没有任何一款工具对python语法的智能提示能比 […]

Continue reading
Posted in Python · Leave a comment

用python写自己的linux音乐播放器

10 2月10 11月 by test16604225

  用linux学习和工作一年多了,已经完全习惯它的操作方式。可是我还是不得不说,在操作方便和易用性上面,它还 […]

Continue reading
Posted in Python · Leave a comment

linux编程之序列化存储python对象(上)

10 2月10 11月 by test16604225

什么是持久性? 持久性的基本思想很简单。假定有一个 python 程序,它可能是一个管理日常待办事项的程序,您 […]

Continue reading
Posted in Python · Leave a comment

linux编程之序列化存储python对象(下)

10 2月10 11月 by test16604225

  相等,但并不总是相同   正如在上一个示例所暗示的,只有在这些对象引用内存中同一个对象时,它们才是相同的。 […]

Continue reading
Posted in Python · Leave a comment

ubuntu下用python编写带有gui的udp通信终端

10 2月10 11月 by test16604225

环境:python2.62+tkinter,ubuntu 输入对方ip地址和端口就可以进行双方通信,界面仿照i […]

Continue reading
Posted in Python · Leave a comment

ubuntu下python版本问题

10 2月10 11月 by test16604225

ubuntu10.04下默认已装了python2.6.5,我现在想换python3.1,可装了之后还是识别为p […]

Continue reading
Posted in Python · Leave a comment

python程序在linux主机运行的注意事项

10 2月10 11月 by test16604225

原本在win上写的一些python脚本,有了真正的linux主机以后,上传上去竟然不能运行,找了很多资料,请教 […]

Continue reading
Posted in Python · Leave a comment

redhat升级python到2.7.6

10 2月10 11月 by test16604225

从今天开始学习python!看了一下虚拟机redhat中的python,发现还是原生的2.4.3,所以决定升级 […]

Continue reading
Posted in Python · Leave a comment

ubuntu下python和pexpect模块的安装

10 2月10 11月 by test16604225

python的安装: 1)下载python。主页上有两个版本,我下载的是2.7这个版本(很费解的是,pytho […]

Continue reading
Posted in Python · Leave a comment

ubuntu系统下搭建python开发环境

10 2月10 11月 by test16604225

之前演示了在windows中安装pycharm,很简单。下面介绍一下如何在ubuntu中安装pycharm w […]

Continue reading
Posted in Python · Leave a comment

rhel6从源码安装python及其他软件包

10 2月10 11月 by test16604225

rhel6从源码安装python及其他软件包 ## get zlib-devel source and bui […]

Continue reading
Posted in Python · Tagged python · Leave a comment

运维新手们,看看学习python的重要性

10 2月10 11月 by test16604225

现阶段,掌握一门开发语言已经成为高级运维工程师的必备计能,不会开发,你就不能充分理解你们系统的业务流程,你就不 […]

Continue reading
Posted in Python · Tagged python · Leave a comment

文章导航

先前文章
较新文章

近期文章

  • 15款互联网人必备的AI工具,效率提升2倍
  • 多个ChatGPT通用指令
  • Python采集biaozhun政府文件
  • TensorFlow库:Python中的深度学习
  • python 本地密码管理应用

近期评论

  • helenadmin发表在《Python采集biaozhun政府文件》
  • helenadmin发表在《写给程序员的一封公开信》
  • Google发表在《About Me》
  • helenadmin发表在《ES(ElasticSearch)分布式全文搜索引擎及使用方式》
  • buy viagra发表在《About Me》

文章归档

  • 2024年12月
  • 2024年9月
  • 2024年6月
  • 2024年5月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年7月
  • 2018年6月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2017年8月
  • 2017年7月
  • 2017年6月
  • 2017年5月
  • 2017年4月
  • 2017年3月
  • 2017年1月
  • 2016年12月
  • 2016年11月
  • 2016年10月
  • 2016年9月
  • 2016年8月
  • 2016年7月
  • 2016年6月
  • 2016年5月
  • 2016年4月
  • 2016年3月
  • 2016年2月
  • 2015年8月
  • 2015年7月
  • 2015年6月
  • 2015年5月
  • 2014年7月
  • 2014年6月
  • 2014年5月
  • 1970年1月

分类目录

  • Database
  • focus—-实时热搜
  • IC设计
  • js&jquery
  • PHP
  • Python
  • 新技术研习
  • 服务器相关技术
  • 算法
  • 缓存技术
  • 随笔

功能

  • 注册
  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2025 charlie笔记 ·