Skip to content
On this page

Anaconda How To

On this page

Anaconda How To

Environment management

  • conda create --name myenv : create new myenv environement
  • conda env list : list all environment
  • conda activate myenv : activate myenv environment
  • conda list -n myenv : list packages

Package management

  • conda search mypackage: search a packagein conda directory
  • conda install mypackage1 mypackage2 : install mypackage1 and mypackage2
  • conda update --all

Python

  • where python

pip

  • pip list installed package
  • pip show package location
Edit this page
Last updated on 3/7/2023