pipenv的使用
pipenv使用方法
1.创建好新的项目时,先安装pipenv
pip install pipenv
2. 指定虚拟环境使用的python版本
pipenv install --two # 使用python2
pipenv install --python3.9.1 # 使用python3.9.1
3.激活虚拟环境或直接使用虚拟环境
pipenv shell # 激活
pipenv run # 直接使用
此时打开项目文件,多出两个文件PIPfile和Pipfile.lock
4.pipenv常用的命令
检查库的安全性
pipenv check
查看库的依赖关系
pipenv graph
卸载库
pipenv uninstall ***
更新
pipenv update
查看具体的库
pipenv open requests