python常见问题备忘
手动更新pip2
- pip官网下载最新版本的tar.gz包
- tar -xzvf解压
- cd 到目录里
python2 setup.py build
python2 setup.py install
- 重启bash
-m 参数运行模块
#-m 参数将后面的模块当做脚本运行,用这个方法可以间接指定pip。适合系统的pip版本对应有问题时 python -m pip
添加自定义模块目录
操作系统:os x
~/.bash_profile
#我的python库
export PYTHONPATH=~/Projects/0-py-collection
pip换源
pip国内的一些镜像
- 阿里云 http://mirrors.aliyun.com/pypi/simple/
- 豆瓣(douban) http://pypi.douban.com/simple/
- 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
- 中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple/
临时更换源
pip install ** -i 地址
配置文件更换
#~/.pip/pip.conf
[global]
index-url = https://pypi.mirrors.ustc.edu.cn/simple/
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。