How do I keep track of pip-installed packages in an Anaconda (Conda) environment?

后端 未结 10 2481
萌比男神i
萌比男神i 2020-11-28 00:35

I\'ve installed and have been using the Anaconda Python distribution, and I have started using the Anaconda (Conda) environment. I can use the standard conda install..

10条回答
  •  情深已故
    2020-11-28 01:09

    You can start by installing the below given command in the conda environment:

    conda install pip

    Followed by installing all pip packages you need in the environment.

    After installing all the conda and pip packages to export the environment use:

    conda env export -n > environment.yml

    This will create the required file in the folder

提交回复
热议问题