conda/pip 导出和借助 requirement.txt安装

conda

txt

导出

 conda list -e > req.txt

安装

conda create -n <environment-name> --file req.txt

yml

导出

conda env export > environment.yml

安装

conda env create -f environment.yaml

pip

导出

pip freeze > requirements.txt

安装

pip install -r requirements.txt

你可能感兴趣的:(编程语言,conda,pip,python)