学习一个语言最便捷的方法,就是用它:听、说、读、写。Python 学习也是这样。自 《Python,你了解么?》 以来已十个月有余,止于了解,未进一步,汗颜!
- 多看代码;
- 多写代码;
环境初建
- PyPI:the Python Package Index;Python 包目录列表;
-
PyPA:Python Packaging Authority
The Python Packaging Authority (PyPA) is a working group that maintains many of the relevant projects in Python packaging. - pip - The PyPA recommended tool for installing Python packages. Python 包安装工具;
在 CentOS 6 上升级 Python 2.6 到 2.7?
- CentOS 6 默认装载的是 Python 2.6.6;
- 不要直接覆盖,因为 yum 依赖于 Python 2.6(
#!/usr/bin/python
);
yum:/usr/bin/yum - 保持多个版本并存,即在保存 2.6 前提下,再安装一个 2.7;
- Upgrade python without breaking yum @ stackoverflow
- How to install Python 2.7 and Python 3.3 on CentOS 6;
pip
- pip install <packagename>
- pip install --upgrade pip:升级 pip 自身版本,目前已到 8.1.2;
- 使用 pip 注意事项
使用 pip 安装包,会污染系统级包环境(system-wide packages),建议在 virtual Python environment(virtualenv)下使用;