Anaconda = Python + Many More Python Libraries.

Conda-

  • – Conda is a environment management tool for any language like Python, R, Ruby, Scala, Java, JavaScript, C/ C++ and etc.
  • – With the help of conda dependency management tool we can easily switch to between environment on local computer which helps us to execute multiple version of python on a same machine.
  • – Conda as a package manager helps us to find and install the required packages on a system.

Conda Commands-

 

    • conda info
    • – conda –version

 

    • Install numpy-
    • – conda install numpy

 

    • Updating conda library-
    • – conda update conda

 

    • Updating anaconda library-
    • – conda update anaconda

 

  • Removing conda library-
  • – conda remove numpy
Menu