Does Conda replace the need for virtualenv?

后端 未结 8 641
时光取名叫无心
时光取名叫无心 2020-11-27 09:42

I recently discovered Conda after I was having trouble installing SciPy, specifically on a Heroku app that I am developing.

With Conda you create environments, very

8条回答
  •  失恋的感觉
    2020-11-27 09:55

    Short answer is, you only need conda.

    1. Conda effectively combines the functionality of pip and virtualenv in a single package, so you do not need virtualenv if you are using conda.

    2. You would be surprised how many packages conda supports. If it is not enough, you can use pip under conda.

    Here is a link to the conda page comparing conda, pip and virtualenv:

    https://docs.conda.io/projects/conda/en/latest/commands.html#conda-vs-pip-vs-virtualenv-commands.

提交回复
热议问题