- 安装pipenv:pip3 install pipenv
- 创建虚拟环境:pipenv --python 3.5
- 安装包:pipenv install "包名"
- 通过修改生成的Pipfile文件中的url更换pip源(阿里源:https://mirrors.aliyun.com/pypi/simple/)
- pipenv graph:查看包之间的依赖关系
- pipenv --where:查看虚拟环境项目路径
- pipenv --venv:虚拟环境路径
- pipenv --py:虚拟环境解释器路径
- pipenv check:检查虚拟环境
- pipenv --rm:删除虚拟环境