python
zzjjzzgggg
这个作者很懒,什么都没留下…
展开
-
pip
installhttp://pip.readthedocs.org/en/latest/installing.html To install or upgrade pip, securely download get-pip.py $ python get-pip.py============================================...原创 2011-07-12 19:31:55 · 1528 阅读 · 0 评论 -
python compress note
You call tarfile.open with mode='w:gz', meaning "Open for gzip compressed writing."You'll probably want to end the filename (the name argument to open) with .tar.gz, but that doesn't affect compre...原创 2011-03-31 20:42:58 · 236 阅读 · 0 评论 -
python命令行参数
import sys # sys.argv的第一个值是命令本身 if len(sys.argv) < 2: print u'请输入选项参数: -R -r -b -e\n' # 打印出所有命令行参数,并检查-R -r -b -e 选项 # 这里从argv数组的第二个值开始循环 ...原创 2011-12-03 13:47:12 · 96 阅读 · 0 评论 -
ubuntu下,加入自己写的python包
在/usr/local/lib/pythonX.X/dist_packages目录下新建个XXX.pth文件,里面写上自己的包路径就可以了。原创 2011-12-09 14:21:30 · 6393 阅读 · 0 评论 -
matplotlib pyqt4
http://stackoverflow.com/questions/7534453/matplotlib-does-not-show-my-drawings-although-i-call-pyplot-showhttp://stackoverflow.com/questions/7942887/how-to-configure-pyqt4-for-python-3-in-ubuntu...原创 2013-02-26 20:11:53 · 6824 阅读 · 0 评论