pip packages not included in “conda env export”

前端 未结 4 496
太阳男子
太阳男子 2021-02-05 06:36

My python project runs on a conda virtual environment. I install packages on the environment with conda install whenever that package is available for installing th

4条回答
  •  情书的邮戳
    2021-02-05 07:18

    If you have installed pip with anaconda and used it to install the packages then conda-env does this automatically.

    So basically you can export your environment with

    conda env export -n > environment.yml

    Otherwise

    Please refer to this link

提交回复
热议问题