Skip to content

Dev Notes

—Short notes on software, systems, and things I learn while building—

Menu
Menu

Conda – Cheat Sheet

Posted on January 17, 2026January 17, 2026 by isleyen

Conda is a powerful tool in the python ecosystem for package management & reproducible environment.

  • create isolated environment for each project
    • switching python versions easily
    • install/update/remove packages safely
  • export & recreate environment elsewhere

Mostly Used Commands

CommandGoal
conda infoshows system info/ installation location/ active environement and more..
conda update condaupdates conda to latest version
conda install {{package_name}}install package (conda install numpy)
conda update {{package_name}}update package(conda update scikit-learn)
conda remove {{package_name}}remove package (conda remove numpy)
conda search {{package_name}}search package (conda search numpy)
conda env listlist environments
conda create --name env01 python=3.5create environment
conda create --clone env01 --name env02clone environment
conda activate env01activate environment
conda deactivatedeactivate current environment & activate the base environment
conda env remove --name env02remove environment
conda list --explicit > env01-env.txtexport environment
conda env create --file env01-env.txtrecreate environment
conda install --name env02 toolzinstall into a specific environment (without activating it)
conda install --channel conda-forge boltonsinstall from a specific channel
pip install boltonsinstall packages using pip
conda remove --name env02 toolz boltonsremove packages
conda list --revisionsdisplay numbered revisions of environment changes
conda install --revision 2revert the environment to revision 2

Resource: conda-cheatsheet.pdf

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Developing Inside a Container – (Notes)
  • Conda – Cheat Sheet
  • Resize Image in URL – Azure

Categories

  • Azure
  • C#
  • devcontainer
  • docker
  • python
© 2026 Dev Notes | Powered by Superbs Personal Blog theme