
Python
文章平均质量分 58
几十年黄钻会员
这个作者很懒,什么都没留下…
展开
-
Python pip 常用命令
查找需要安装的包 pip search <包名>安装python包 pip install pip install <包名>==1.0.4 pip install -r requirements.txt pip install <包名> -i http://pypi.mirrors.ustc.edu.cn/simple/ pip install -e < loca原创 2016-08-25 11:15:44 · 9776 阅读 · 0 评论 -
Python 和 Linux locale 学习笔记
Python 和 Linux locale 学习笔记遇到一个问题python 中定义了unicode字符串。server Aunicode_string=u"hello \u2026"print unicode_stringserver A outputhello …server B unicode_string=u"hello \u2026"print unicode_stringserver原创 2016-08-21 13:03:08 · 993 阅读 · 0 评论