Is that a bad idea to use conda and pip install on the same environment?

后端 未结 2 1404
南方客
南方客 2020-12-28 15:53

I am curious here.

Since conda install and pip install in many cases doing essentially the same thing, what would be the best option? Is there a case when someone s

2条回答
  •  礼貌的吻别
    2020-12-28 16:43

    Depends on the complexity of your environment really. Using pip for a few simple packages should not generate any issues. Using more pip installs raises the question "Why not use a pip venv then?"

    If you're not doing anything major, you might be able to have a mix of pip and conda installs

    There is an extensive explanation why mixing them can be a bad idea here https://www.anaconda.com/using-pip-in-a-conda-environment/

提交回复
热议问题