标签:code ima nts mamicode 安装 pip pipe Python项目 env
1、cd到相关项目下并创建虚拟环境
~$ pipenv install --dev
2、激活虚拟环境
~$ pipenv shell
3、执行命令
~$ pip freeze > requirements.txt
注意:此方法必须在项目虚拟环境下使用,否则会生成系统的所有依赖。
4、安装依赖
~$ pip install -r requirements.txt
标签:code ima nts mamicode 安装 pip pipe Python项目 env
原文地址:https://www.cnblogs.com/dyc99/p/12053785.html