🖥️
Quick Guide
  • Home
  • Docker
    • Docker CLI Commands
    • Docker References
  • Azure
    • Azure CLI Commands
  • Git
    • Git Commands
  • best-practices
    • Best practices to create custom starter
  • conda
    • Conda Commands
    • Conda official references
  • django
    • Django Admin Commands
  • homebrew
    • homebrew-commands
  • kafka
    • kafka-commands
    • Kafka Official References
  • python
    • python-commands
    • python-references
  • windows
    • windows-commands
Powered by GitBook
On this page
  1. conda

Conda Commands

Command
Description

conda -V

Prints conda's version

conda -h

Prints conda's help

conda create --name env_name python

Creates env_name environment for python

conda info --envs

List all the environments

conda remove --name env_name --all

Removes everything of env_name environment

conda activate env_name

Activates env_name environment

conda deactivate

Deactivates current environment

conda install django

Installs Django in active environment

PreviouscondaNextConda official references

Last updated 3 years ago