Data-science/deep learning
conda install vs pip install
study&grow
2020. 10. 31. 10:58
728x90
가상환경 구축시
tensorflow 같은 lib들은 cuda, cudnn 등 dependency가 많이 걸려있다.
conda install을 통해 설치하면 이런 dependency를 한꺼번에 해결 가능하다.
pip install로 하면, 많은 삽질이 필요.
conda install을 추천한다.
conda install -c anaconda tensorflow-gpu=1.14.0