Conda install

What is Conda?

Conda is an open-source package and environment management system. It is primarily used to install multiple versions of software packages and their dependencies so that you can easily switch between them. Conda is frequently used to conveniently install Python.

Availbility

Conda is available for:

  • Windows
  • Mac
  • Linux

Commands

The following are some commonly used conda install commands:

Install a package

conda install PACKAGE_NAME

Uninstall a package

conda remove --name ENVIRONMENT_NAME PACKAGE_NAME

Update a package

conda update --name ENVIRONMENT_NAME PACKAGE_NAME

List installed packages

conda list --name ENVIRONMENT_NAME

Install Python

conda install python=x.x

Install pip

conda install pip

For more details, refer to the official documentation.

Free Resources

Copyright ©2025 Educative, Inc. All rights reserved