pip和conda的区别【转载】

转自:https://stackoverflow.com/questions/20994716/what-is-the-difference-between-pip-and-conda

pip常用,但是它只关注Python,而忽略了非Python的包依赖,such as HDF5, MKL, LLVM, etc,它们的源码中没有setup.py,并且不向Python的site-packages里安装。

Conda是一个打包工具,比pip做的要多,它能够处理除了Python包之外的外部的包依赖,Conda也能够创建虚拟环境。

原文地址:https://www.cnblogs.com/BlueBlueSea/p/11214589.html