Pipenv的简单使用

安装

$ pip install pipenv

安装虚拟环境

pipenv install

新建一个准备当环境的文件夹pipenvtest,并cd进入该文件夹:

- pipenv --three   会使用当前系统的Python3创建环境
- pipenv --python 3.6 指定某一Python版本创建环境
- pipenv shell 激活虚拟环境
- pipenv --where  显示目录信息
/home/jiahuan/pipenvtest
- pipenv --venv  显示虚拟环境信息
/home/jiahuan/.local/share/virtualenvs/pipenvtest-9KKRH3OW
- pipenv --py  显示Python解释器信息
/home/jiahuan/.local/share/virtualenvs/pipenvtest-9KKRH3OW/bin/python
- pipenv install requests 安装相关模块并加入到Pipfile
- pipenv install django==1.11
安装固定版本模块并加入到Pipfile
- pipenv graph 查看目前安装的库及其依赖
pipenv check检查安全漏洞
pipenv uninstall --all 卸载全部包并从Pipfile中移除

posted on 2019-09-03 10:08  action555  阅读(286)  评论(0编辑  收藏  举报