Python互联网科技程序员

管理 python 包

2017-02-17  本文已影响31人  清醒的cola

开始

配置文件存放位置:

  1. On Unix and macOS the configuration file is:
    $HOME/.pip/pip.conf
  2. On Unix and macOS the file is:
    $VIRTUAL_ENV/pip.conf

更新配置文件 pip.conf(阿里镜像加速)

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com

更新 pip

pip install -U pip 

更新 django 版本

pip install --upgrade pip #pip更新django版本
pip install -U Django==1.8.15

添加依赖

pip freeze > requirements.txt # 制作requirements.txt
pip install -r requirements.txt # pip安装软件

感谢阿里提供的镜像

上一篇 下一篇

猜你喜欢

热点阅读