补充:pipenv
===
安装与配置
```
apt-get install python-pip -y
pip3 install pipenv
python3 -m site --user-base
配置bin到path
vim ~/.profile
source ~/.profile
```
### 基础操作
```
pipenv --python 3
# 配置阿里源
python -c "s='https://mirrors.aliyun.com/pypi/simple';fn='Pipfile';pat=r'(\[\[source\]\]\s*url\s*=\s*\")(.+?)(\")';import re;fp=open(fn, 'r+');ss=fp.read();fp.seek(0);fp.truncate();fp.write(re.sub(pat, r'\1{}\3'.format(s), ss));fp.close();print('Done! Pipfile source switch to:\n'+s)"
# 安装插件
pipenv install flask
# 进入虚拟环境shell
pipenv shell
# 查看当前项目包依赖关系
pipenv graph
# 退出shell
exit
# 安装开发专用包
pipenv install --dev requests
```
### 团队共享
```
# 拷贝pipfile
# 安装依赖库,包括开发依赖
pipenv install -dev
pipenv shell
pip list
exit
pipenv --venv
# 删除虚拟环境
pipenv --rm
pipenv --venv
````
### 运行脚本
```
pipenv run python main.py
```