What is the effect of using pip to install python packages on anaconda?

I installed the new anaconda v4.4. I realized that python packages can be installed using both conda and pip. What is the effect of using pip to install python packages instead of conda when using anaconda? Whether the libraries which are in pip will cease to function? I am using python v3

EDIT: I don't think this question is a duplicate . What is the difference between pip and conda? This question explains the difference between pip and conda, but does not talk about the effect of using pip when conda can be used.

+4
source share
1 answer

, pip vs conda. Conda , pip - . , conda , pip! :

conda create -n testenv python=3
pip install numpy
conda install scipy

, conda NumPy, ​​ pip. , C, - . , , conda conda.

+7

All Articles