一直听说Pipenv
大法好比virtualenv
好,今天我们来学习下。
安装
1 | pip install pipenv -i https://pypi.douban.com/simple |
创建
pipenv
就是创建一个虚拟环境和项目绑定,这一点相比于virtualenv
具有局限性。
如何和项目绑定呢?
一定要在项目目录下面执行绑定操作。
新建项目
1 | [root@hongshaorou ~]# mkdir fisher |
创建虚拟环境
1 | [root@hongshaorou fisher]# pipenv install |
如果你没有安装 直接允许
pipenv shell
会自动创建一个虚拟环境
进入虚拟环境
1 | [root@hongshaorou fisher]# pipenv shell |
安装包
1 | (fisher-zACReBI9) [root@hongshaorou fisher]# pipenv install flask -i https://pypi.douban.com/simple |
查看安装的包(包括依赖关系
1 | (fisher-zACReBI9) [root@hongshaorou fisher]# pipenv graph |
退出
1 | (fisher-zACReBI9) [root@hongshaorou fisher]# exit |
github地址:https://github.com/pypa/pipenv
参考博客地址: