github: https://github.com/pypa/pipenv
1、安装
pip install pipenv
2、用pipenv 创建虚拟环境
mkdir test #创建目录test
cd test #进入目录
pipenv --two #用python2建立环境 (需要系统安装了python2)
pipenv --three #用python3建立环境 (需要系统安装了python3)
pipenv install requests #安装requests库
pipenv install flask==1.1.1 #安装flask框架版本为1.1.1
3、激活虚拟环境 pipenv shell
4、查看目录文件的依赖关系 pipenv graph
5、创建一个包含预发行版的锁文件 pipenv lock
Usage
$ pipenv
Usage: pipenv [OPTIONS] COMMAND [ARGS]…
Options:
–where Output project home information.
–venv Output virtualenv information.
–py Output Python interpreter information.
–envs Output Environment Variable options.
–rm Remove t